💀💀💀 (gospell)

Race #38

View Pit Stop page for race #38 by gospellGhost race

View profile for 💀💀💀 (gospell)

Official speed 60.05 wpm (30.77 seconds elapsed during race)
Race Start December 25, 2021 1:12:12pm UTC
Race Finish December 25, 2021 1:12:43pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 21.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")