Dambi (tomino)

Race #13

View Pit Stop page for race #13 by tominoGhost race

View profile for Dambi (tomino)

Official speed 62.53 wpm (29.55 seconds elapsed during race)
Race Start January 27, 2022 11:15:44am UTC
Race Finish January 27, 2022 11:16:14am UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 21.88
Text #10002 (Length: 154 characters)

import os import sys def run(program, *args): pid = os.fork() if not pid: os.execvp(program, program + args) return os.wait()[0] run("python", "hello.py")