Quantum (alvc97)

Race #10

View Pit Stop page for race #10 by alvc97Ghost race

View profile for Quantum (alvc97)

Official speed 55.10 wpm (33.54 seconds elapsed during race)
Race Start January 12, 2014 9:42:17pm UTC
Race Finish January 12, 2014 9:42:51pm UTC
Outcome Win (1 of 3)
Accuracy 88.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")