Noe (noe7)

Race #48

View Pit Stop page for race #48 by noe7Ghost race

View profile for Noe (noe7)

Official speed 57.21 wpm (32.30 seconds elapsed during race)
Race Start May 28, 2016 10:09:18am UTC
Race Finish May 28, 2016 10:09:50am UTC
Outcome Win (1 of 3)
Accuracy 96.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")