deroche (deroche1)

Race #35

View Pit Stop page for race #35 by deroche1Ghost race

View profile for deroche (deroche1)

Official speed 92.96 wpm (19.88 seconds elapsed during race)
Race Start February 14, 2019 3:59:55am UTC
Race Finish February 14, 2019 4:00:15am UTC
Outcome Win (1 of 2)
Opponents 2. poem (69.40 wpm)
Accuracy 98.0%
Points 32.54
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")