kostis (oh_yeah_go)

Race #1

View Pit Stop page for race #1 by oh_yeah_goGhost race

View profile for kostis (oh_yeah_go)

Official speed 34.62 wpm (53.38 seconds elapsed during race)
Race Start January 23, 2022 12:42:28pm UTC
Race Finish January 23, 2022 12:43:21pm UTC
Outcome No win (2 of 3)
Accuracy 95.0%
Points 12.12
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")