Alex (alexey0)

Race #45

View Pit Stop page for race #45 by alexey0Ghost race

View profile for Alex (alexey0)

Official speed 36.90 wpm (50.08 seconds elapsed during race)
Race Start September 25, 2014 12:08:22pm UTC
Race Finish September 25, 2014 12:09:12pm UTC
Outcome Win (1 of 3)
Accuracy 100.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")