Alex (alexey0)

Race #5

View Pit Stop page for race #5 by alexey0Ghost race

View profile for Alex (alexey0)

Official speed 29.12 wpm (63.46 seconds elapsed during race)
Race Start September 8, 2014 8:44:19am UTC
Race Finish September 8, 2014 8:45:22am UTC
Outcome No win (3 of 3)
Accuracy 97.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")