raging_wolf (raging_wolf)

Race #8

View Pit Stop page for race #8 by raging_wolfGhost race

View profile for raging_wolf (raging_wolf)

Official speed 25.75 wpm (71.77 seconds elapsed during race)
Race Start November 22, 2020 2:51:44pm UTC
Race Finish November 22, 2020 2:52:56pm UTC
Outcome Win (1 of 3)
Accuracy 92.0%
Points 9.01
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")