Stephen (iwinn)

Race #2

View Pit Stop page for race #2 by iwinnGhost race

View profile for Stephen (iwinn)

Official speed 86.46 wpm (21.37 seconds elapsed during race)
Race Start June 19, 2021 6:42:51am UTC
Race Finish June 19, 2021 6:43:12am UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 30.26
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")