kostis (oh_yeah_go)

Race #57

View Pit Stop page for race #57 by oh_yeah_goGhost race

View profile for kostis (oh_yeah_go)

Official speed 42.67 wpm (43.31 seconds elapsed during race)
Race Start January 25, 2022 9:00:50am UTC
Race Finish January 25, 2022 9:01:33am UTC
Outcome No win (3 of 3)
Accuracy 93.0%
Points 14.93
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")