Lucca (9fingersonly)

Race #1

View Pit Stop page for race #1 by 9fingersonlyGhost race

View profile for Lucca (9fingersonly)

Official speed 31.44 wpm (58.78 seconds elapsed during race)
Race Start December 5, 2020 5:40:32pm UTC
Race Finish December 5, 2020 5:41:31pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 11.01
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")