Daniel (dsat)

Race #30

View Pit Stop page for race #30 by dsatGhost race

View profile for Daniel (dsat)

Official speed 48.69 wpm (37.95 seconds elapsed during race)
Race Start October 1, 2015 10:20:02pm UTC
Race Finish October 1, 2015 10:20:40pm UTC
Outcome Win (1 of 4)
Opponents 2. yarrpirate (43.40 wpm)
3. oliver84 (43.29 wpm)
4. richardgomes7d (43.01 wpm)
5. erh4ua (34.76 wpm)
Accuracy 96.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")