kostis (oh_yeah_go)

Race #13

View Pit Stop page for race #13 by oh_yeah_goGhost race

View profile for kostis (oh_yeah_go)

Official speed 42.39 wpm (43.60 seconds elapsed during race)
Race Start January 23, 2022 5:58:14pm UTC
Race Finish January 23, 2022 5:58:58pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 14.84
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")