leon (leonzalion)

Race #37

View Pit Stop page for race #37 by leonzalionGhost race

View profile for leon (leonzalion)

Official speed 113.73 wpm (16.25 seconds elapsed during race)
Race Start July 19, 2021 9:44:55pm UTC
Race Finish July 19, 2021 9:45:12pm UTC
Outcome No win (1 of 1)
Accuracy 95.0%
Points 39.81
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")