kalaset (kalaset)

Race #6

View Pit Stop page for race #6 by kalasetGhost race

View profile for kalaset (kalaset)

Official speed 64.28 wpm (28.75 seconds elapsed during race)
Race Start December 19, 2013 8:46:41pm UTC
Race Finish December 19, 2013 8:47:10pm 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")