mugurel (dobrogeanum)

Race #26

View Pit Stop page for race #26 by dobrogeanumGhost race

View profile for mugurel (dobrogeanum)

Official speed 33.23 wpm (55.61 seconds elapsed during race)
Race Start July 30, 2015 8:43:11pm UTC
Race Finish July 30, 2015 8:44:07pm UTC
Outcome No win (3 of 3)
Accuracy 91.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")