raging_wolf (raging_wolf)

Race #17

View Pit Stop page for race #17 by raging_wolfGhost race

View profile for raging_wolf (raging_wolf)

Official speed 29.17 wpm (63.35 seconds elapsed during race)
Race Start December 1, 2020 4:53:10pm UTC
Race Finish December 1, 2020 4:54:13pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 10.21
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")