Teme (teme)

Race #2

View Pit Stop page for race #2 by temeGhost race

View profile for Teme (teme)

Official speed 51.13 wpm (36.14 seconds elapsed during race)
Race Start October 22, 2015 3:18:59am UTC
Race Finish October 22, 2015 3:19:35am UTC
Outcome Win (1 of 3)
Accuracy 95.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")