Horace (chillee)

Race #2

View Pit Stop page for race #2 by chilleeGhost race

View profile for Horace (chillee)

Official speed 61.28 wpm (30.16 seconds elapsed during race)
Race Start September 25, 2016 3:58:48am UTC
Race Finish September 25, 2016 3:59:19am UTC
Outcome No win (3 of 3)
Accuracy 94.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")