leon (leonzalion)

Race #21

View Pit Stop page for race #21 by leonzalionGhost race

View profile for leon (leonzalion)

Official speed 122.55 wpm (15.08 seconds elapsed during race)
Race Start May 25, 2021 7:42:45pm UTC
Race Finish May 25, 2021 7:43:00pm UTC
Outcome No win (1 of 1)
Accuracy 98.0%
Points 42.89
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")