kostis (oh_yeah_go)

Race #56

View Pit Stop page for race #56 by oh_yeah_goGhost race

View profile for kostis (oh_yeah_go)

Official speed 40.27 wpm (45.89 seconds elapsed during race)
Race Start January 25, 2022 8:59:32am UTC
Race Finish January 25, 2022 9:00:18am UTC
Outcome Win (1 of 3)
Accuracy 97.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")