Eduard (eduard20)

Race #2

View Pit Stop page for race #2 by eduard20Ghost race

View profile for Eduard (eduard20)

Official speed 51.97 wpm (35.56 seconds elapsed during race)
Race Start July 16, 2015 1:53:33pm UTC
Race Finish July 16, 2015 1:54:08pm UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 0.00
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")