leon (leonzalion)

Race #32

View Pit Stop page for race #32 by leonzalionGhost race

View profile for leon (leonzalion)

Official speed 112.46 wpm (16.43 seconds elapsed during race)
Race Start July 19, 2021 9:37:38pm UTC
Race Finish July 19, 2021 9:37:55pm UTC
Outcome No win (1 of 1)
Accuracy 97.0%
Points 39.36
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")