RBK (rbiskupicknight)

Race #7

View Pit Stop page for race #7 by rbiskupicknightGhost race

View profile for RBK (rbiskupicknight)

Official speed 49.85 wpm (37.07 seconds elapsed during race)
Race Start September 3, 2015 10:20:06pm UTC
Race Finish September 3, 2015 10:20:43pm UTC
Outcome No win (3 of 4)
Opponents 1. dsat (57.83 wpm)
2. yamileth (56.45 wpm)
Accuracy 89.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")