Hobn (hobn)

Race #5

View Pit Stop page for race #5 by hobnGhost race

View profile for Hobn (hobn)

Official speed 64.35 wpm (28.72 seconds elapsed during race)
Race Start September 6, 2015 2:37:11am UTC
Race Finish September 6, 2015 2:37:39am UTC
Outcome Win (1 of 2)
Accuracy 92.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")