(boy_314)

Race #73

View Pit Stop page for race #73 by boy_314Ghost race

View profile for (boy_314)

Official speed 82.22 wpm (22.48 seconds elapsed during race)
Race Start October 17, 2019 6:22:48pm UTC
Race Finish October 17, 2019 6:23:11pm UTC
Outcome No win (3 of 3)
Accuracy 99.0%
Points 28.78
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")