Quantum (alvc97)

Race #12

View Pit Stop page for race #12 by alvc97Ghost race

View profile for Quantum (alvc97)

Official speed 47.15 wpm (39.19 seconds elapsed during race)
Race Start January 13, 2014 10:46:47pm UTC
Race Finish January 13, 2014 10:47:26pm UTC
Outcome Win (1 of 3)
Accuracy 76.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")