Nathan (h_nathan26)

Race #1

View Pit Stop page for race #1 by h_nathan26Ghost race

View profile for Nathan (h_nathan26)

Official speed 39.67 wpm (46.58 seconds elapsed during race)
Race Start June 10, 2023 8:03:32am UTC
Race Finish June 10, 2023 8:04:19am UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 13.88
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")