raging_wolf (raging_wolf)

Race #43

View Pit Stop page for race #43 by raging_wolfGhost race

View profile for raging_wolf (raging_wolf)

Official speed 30.46 wpm (60.67 seconds elapsed during race)
Race Start December 10, 2020 12:09:34pm UTC
Race Finish December 10, 2020 12:10:35pm UTC
Outcome No win (2 of 3)
Accuracy 93.0%
Points 10.66
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")