Jeremy (merlinsroom)

Race #4

View Pit Stop page for race #4 by merlinsroomGhost race

View profile for Jeremy (merlinsroom)

Official speed 40.59 wpm (45.53 seconds elapsed during race)
Race Start February 19, 2016 6:47:31pm UTC
Race Finish February 19, 2016 6:48:17pm UTC
Outcome Win (1 of 3)
Opponents 3. richardgomes7d (35.24 wpm)
Accuracy 98.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")