raging_wolf (raging_wolf)

Race #53

View Pit Stop page for race #53 by raging_wolfGhost race

View profile for raging_wolf (raging_wolf)

Official speed 31.52 wpm (58.63 seconds elapsed during race)
Race Start January 19, 2021 12:33:06pm UTC
Race Finish January 19, 2021 12:34:05pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 11.03
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")