marc (marc54)

Race #1

View Pit Stop page for race #1 by marc54Ghost race

View profile for marc (marc54)

Official speed 25.69 wpm (71.93 seconds elapsed during race)
Race Start September 2, 2023 3:27:55pm UTC
Race Finish September 2, 2023 3:29:07pm UTC
Outcome No win (3 of 3)
Accuracy 92.0%
Points 8.99
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")