Chris (trishmapow2)

Race #3

View Pit Stop page for race #3 by trishmapow2Ghost race

View profile for Chris (trishmapow2)

Official speed 74.37 wpm (24.85 seconds elapsed during race)
Race Start February 18, 2017 10:12:33am UTC
Race Finish February 18, 2017 10:12:58am 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")