Stop (stop__)

Race #3

View Pit Stop page for race #3 by stop__Ghost race

View profile for Stop (stop__)

Official speed 32.00 wpm (57.75 seconds elapsed during race)
Race Start April 14, 2023 9:33:10pm UTC
Race Finish April 14, 2023 9:34:08pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 11.20
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")