Mark (fatweasel)

Race #1

View Pit Stop page for race #1 by fatweaselGhost race

View profile for Mark (fatweasel)

Official speed 36.54 wpm (50.57 seconds elapsed during race)
Race Start September 16, 2015 4:32:41pm UTC
Race Finish September 16, 2015 4:33:32pm UTC
Outcome Win (1 of 3)
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")