Tamber (tamber)

Race #14

View Pit Stop page for race #14 by tamberGhost race

View profile for Tamber (tamber)

Official speed 77.53 wpm (23.84 seconds elapsed during race)
Race Start January 12, 2012 9:03:38pm UTC
Race Finish January 12, 2012 9:04:02pm UTC
Outcome Win (1 of 3)
Accuracy 98.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")