leon (leonzalion)

Race #38

View Pit Stop page for race #38 by leonzalionGhost race

View profile for leon (leonzalion)

Official speed 111.96 wpm (16.51 seconds elapsed during race)
Race Start July 25, 2021 12:26:29am UTC
Race Finish July 25, 2021 12:26:46am UTC
Outcome No win (1 of 1)
Accuracy 96.0%
Points 39.19
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")