YT (tim72)

Race #3

View Pit Stop page for race #3 by tim72Ghost race

View profile for YT (tim72)

Official speed 41.77 wpm (44.24 seconds elapsed during race)
Race Start January 27, 2023 4:10:06pm UTC
Race Finish January 27, 2023 4:10:50pm UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 14.62
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")