Wout (wout1)

Race #1

View Pit Stop page for race #1 by wout1Ghost race

View profile for Wout (wout1)

Official speed 38.60 wpm (47.88 seconds elapsed during race)
Race Start July 7, 2023 1:20:48pm UTC
Race Finish July 7, 2023 1:21:36pm UTC
Outcome No win (2 of 2)
Accuracy 98.0%
Points 13.51
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")