raging_wolf (raging_wolf)

Race #23

View Pit Stop page for race #23 by raging_wolfGhost race

View profile for raging_wolf (raging_wolf)

Official speed 35.65 wpm (51.84 seconds elapsed during race)
Race Start December 4, 2020 12:50:30am UTC
Race Finish December 4, 2020 12:51:22am UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 12.48
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")