machineuno (machineuno)

Race #13

View Pit Stop page for race #13 by machineunoGhost race

View profile for machineuno (machineuno)

Official speed 33.31 wpm (55.48 seconds elapsed during race)
Race Start June 28, 2023 12:18:03pm UTC
Race Finish June 28, 2023 12:18:59pm UTC
Outcome No win (2 of 4)
Accuracy 92.0%
Points 11.66
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")