3ymsdet (3ymsdet)

Race #1

View Pit Stop page for race #1 by 3ymsdetGhost race

View profile for 3ymsdet (3ymsdet)

Official speed 40.55 wpm (45.57 seconds elapsed during race)
Race Start September 6, 2014 1:44:05pm UTC
Race Finish September 6, 2014 1:44:51pm UTC
Outcome No win (2 of 2)
Accuracy 91.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")