SkimnerPhi (skyminer707)

Race #14

View Pit Stop page for race #14 by skyminer707Ghost race

View profile for SkimnerPhi (skyminer707)

Official speed 49.06 wpm (37.67 seconds elapsed during race)
Race Start April 20, 2014 7:42:43pm UTC
Race Finish April 20, 2014 7:43:20pm UTC
Outcome Win (1 of 3)
Accuracy 90.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")