onel (onel11)

Race #7

View Pit Stop page for race #7 by onel11Ghost race

View profile for onel (onel11)

Official speed 40.66 wpm (45.45 seconds elapsed during race)
Race Start June 11, 2023 12:38:40pm UTC
Race Finish June 11, 2023 12:39:26pm UTC
Outcome No win (1 of 1)
Accuracy 92.0%
Points 14.23
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")