Anna (akk12)

Race #4

View Pit Stop page for race #4 by akk12Ghost race

View profile for Anna (akk12)

Official speed 62.62 wpm (29.51 seconds elapsed during race)
Race Start April 10, 2017 3:12:14am UTC
Race Finish April 10, 2017 3:12:43am UTC
Outcome No win (2 of 4)
Opponents 1. andythedinosaur (77.74 wpm)
3. sollight (55.91 wpm)
Accuracy 97.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")