raging_wolf (raging_wolf)

Race #36

View Pit Stop page for race #36 by raging_wolfGhost race

View profile for raging_wolf (raging_wolf)

Official speed 30.73 wpm (60.14 seconds elapsed during race)
Race Start December 8, 2020 11:55:22am UTC
Race Finish December 8, 2020 11:56:22am UTC
Outcome No win (3 of 3)
Accuracy 92.0%
Points 10.76
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")