💀💀💀 (gospell)

Race #35

View Pit Stop page for race #35 by gospellGhost race

View profile for 💀💀💀 (gospell)

Official speed 54.35 wpm (34.00 seconds elapsed during race)
Race Start December 25, 2021 1:05:34pm UTC
Race Finish December 25, 2021 1:06:08pm UTC
Outcome Win (1 of 2)
Opponents 2. scarwpm (38.75 wpm)
Accuracy 95.0%
Points 19.02
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")