Ethan (vdka)

Race #1

View Pit Stop page for race #1 by vdkaGhost race

View profile for Ethan (vdka)

Official speed 53.92 wpm (34.27 seconds elapsed during race)
Race Start June 25, 2018 5:39:57am UTC
Race Finish June 25, 2018 5:40:31am UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 18.87
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")