Gordan (gtrain)

Race #2

View Pit Stop page for race #2 by gtrainGhost race

View profile for Gordan (gtrain)

Official speed 72.60 wpm (25.45 seconds elapsed during race)
Race Start May 7, 2019 4:02:44am UTC
Race Finish May 7, 2019 4:03:09am UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 25.41
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")