Nilax (nilax)

Race #5

View Pit Stop page for race #5 by nilaxGhost race

View profile for Nilax (nilax)

Official speed 40.65 wpm (45.46 seconds elapsed during race)
Race Start October 19, 2012 5:37:34pm UTC
Race Finish October 19, 2012 5:38:19pm UTC
Outcome No win (2 of 2)
Opponents 1. rusherx (49.19 wpm)
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")