Keriat (keriat)

Race #11

View Pit Stop page for race #11 by keriatGhost race

View profile for Keriat (keriat)

Official speed 29.48 wpm (62.69 seconds elapsed during race)
Race Start April 5, 2014 5:16:02pm UTC
Race Finish April 5, 2014 5:17:05pm UTC
Outcome No win (2 of 3)
Accuracy 92.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")