raging_wolf (raging_wolf)

Race #9

View Pit Stop page for race #9 by raging_wolfGhost race

View profile for raging_wolf (raging_wolf)

Official speed 33.55 wpm (55.08 seconds elapsed during race)
Race Start November 22, 2020 2:56:42pm UTC
Race Finish November 22, 2020 2:57:37pm UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 11.74
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")