Antonio (antotot04)

Race #1

View Pit Stop page for race #1 by antotot04Ghost race

View profile for Antonio (antotot04)

Official speed 33.77 wpm (54.72 seconds elapsed during race)
Race Start June 21, 2023 6:50:07pm UTC
Race Finish June 21, 2023 6:51:02pm UTC
Outcome No win (3 of 3)
Accuracy 92.0%
Points 11.82
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")