r (deroche1)

Race #91

View Pit Stop page for race #91 by deroche1Ghost race

View profile for r (deroche1)

Official speed 93.46 wpm (19.77 seconds elapsed during race)
Race Start February 16, 2019 10:58:07pm UTC
Race Finish February 16, 2019 10:58:27pm UTC
Outcome No win (3 of 3)
Accuracy 97.0%
Points 32.71
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")