chien (chien)

Race #7

View Pit Stop page for race #7 by chienGhost race

View profile for chien (chien)

Official speed 73.80 wpm (25.04 seconds elapsed during race)
Race Start August 23, 2013 2:45:58pm UTC
Race Finish August 23, 2013 2:46:23pm UTC
Outcome No win (2 of 2)
Accuracy 97.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")