Kevin (ksun48)

Race #7

View Pit Stop page for race #7 by ksun48Ghost race

View profile for Kevin (ksun48)

Official speed 49.10 wpm (37.64 seconds elapsed during race)
Race Start January 11, 2013 11:45:56pm UTC
Race Finish January 11, 2013 11:46:34pm UTC
Outcome No win (3 of 3)
Accuracy 79.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")