asdf (spelx)

Race #4

View Pit Stop page for race #4 by spelxGhost race

View profile for asdf (spelx)

Official speed 53.36 wpm (34.63 seconds elapsed during race)
Race Start May 4, 2015 7:00:32pm UTC
Race Finish May 4, 2015 7:01:07pm UTC
Outcome No win (2 of 3)
Opponents 1. jap23 (73.97 wpm)
3. pidude314 (43.33 wpm)
Accuracy 90.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")