kostis (oh_yeah_go)

Race #24

View Pit Stop page for race #24 by oh_yeah_goGhost race

View profile for kostis (oh_yeah_go)

Official speed 34.76 wpm (53.16 seconds elapsed during race)
Race Start January 24, 2022 4:53:52pm UTC
Race Finish January 24, 2022 4:54:45pm UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 12.16
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")