candylantis (candylantis)

Race #1

View Pit Stop page for race #1 by candylantisGhost race

View profile for candylantis (candylantis)

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