Mynamejeff (jeffery321)

Race #12

View Pit Stop page for race #12 by jeffery321Ghost race

View profile for Mynamejeff (jeffery321)

Official speed 46.11 wpm (40.08 seconds elapsed during race)
Race Start August 16, 2023 9:22:51am UTC
Race Finish August 16, 2023 9:23:31am UTC
Outcome Win (1 of 2)
Accuracy 95.0%
Points 16.14
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")