Lukas (duckyluuk)

Race #1

View Pit Stop page for race #1 by duckyluukGhost race

View profile for Lukas (duckyluuk)

Official speed 51.65 wpm (35.78 seconds elapsed during race)
Race Start December 12, 2022 10:48:02am UTC
Race Finish December 12, 2022 10:48:37am UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 18.08
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")