raging_wolf (raging_wolf)

Race #34

View Pit Stop page for race #34 by raging_wolfGhost race

View profile for raging_wolf (raging_wolf)

Official speed 37.78 wpm (48.91 seconds elapsed during race)
Race Start December 7, 2020 4:55:26pm UTC
Race Finish December 7, 2020 4:56:15pm UTC
Outcome No win (2 of 3)
Accuracy 97.0%
Points 13.22
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")