kostis (oh_yeah_go)

Race #62

View Pit Stop page for race #62 by oh_yeah_goGhost race

View profile for kostis (oh_yeah_go)

Official speed 43.87 wpm (42.12 seconds elapsed during race)
Race Start January 25, 2022 11:53:48am UTC
Race Finish January 25, 2022 11:54:30am UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 15.35
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")