Antonio (some1b)

Race #21

View Pit Stop page for race #21 by some1bGhost race

View profile for Antonio (some1b)

Official speed 40.28 wpm (45.88 seconds elapsed during race)
Race Start August 2, 2023 7:02:00pm UTC
Race Finish August 2, 2023 7:02:46pm UTC
Outcome No win (2 of 3)
Accuracy 95.0%
Points 14.10
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")