Sam (sam77777)

Race #2

View Pit Stop page for race #2 by sam77777Ghost race

View profile for Sam (sam77777)

Official speed 63.00 wpm (29.33 seconds elapsed during race)
Race Start August 20, 2023 1:54:30pm UTC
Race Finish August 20, 2023 1:54:59pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 22.05
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")