v (invalidanswer)

Race #1

View Pit Stop page for race #1 by invalidanswerGhost race

View profile for v (invalidanswer)

Official speed 45.19 wpm (40.89 seconds elapsed during race)
Race Start March 9, 2017 3:59:30am UTC
Race Finish March 9, 2017 4:00:11am UTC
Outcome No win (2 of 3)
Opponents 3. candylantis (27.65 wpm)
Accuracy 87.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")