deroche (deroche1)

Race #3

View Pit Stop page for race #3 by deroche1Ghost race

View profile for deroche (deroche1)

Official speed 90.54 wpm (20.41 seconds elapsed during race)
Race Start August 30, 2018 11:33:33pm UTC
Race Finish August 30, 2018 11:33:53pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 31.69
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")