mugurel (dobrogeanum)

Race #25

View Pit Stop page for race #25 by dobrogeanumGhost race

View profile for mugurel (dobrogeanum)

Official speed 37.97 wpm (48.67 seconds elapsed during race)
Race Start July 29, 2015 11:50:25am UTC
Race Finish July 29, 2015 11:51:13am UTC
Outcome No win (2 of 3)
Accuracy 89.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")