raging_wolf (raging_wolf)

Race #29

View Pit Stop page for race #29 by raging_wolfGhost race

View profile for raging_wolf (raging_wolf)

Official speed 36.85 wpm (50.15 seconds elapsed during race)
Race Start December 6, 2020 9:23:16am UTC
Race Finish December 6, 2020 9:24:06am UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 12.90
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")