Brandon (kempy92)

Race #10

View Pit Stop page for race #10 by kempy92Ghost race

View profile for Brandon (kempy92)

Official speed 80.25 wpm (23.03 seconds elapsed during race)
Race Start April 3, 2017 1:58:12pm UTC
Race Finish April 3, 2017 1:58:35pm UTC
Outcome Win (1 of 2)
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")