_ (zoli_)

Race #18

View Pit Stop page for race #18 by zoli_Ghost race

View profile for _ (zoli_)

Official speed 29.76 wpm (62.10 seconds elapsed during race)
Race Start October 6, 2014 2:41:46pm UTC
Race Finish October 6, 2014 2:42:48pm UTC
Outcome No win (2 of 3)
Accuracy 93.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")