🐢 (garvint123)

Race #1

View Pit Stop page for race #1 by garvint123Ghost race

View profile for 🐢 (garvint123)

Official speed 42.55 wpm (43.43 seconds elapsed during race)
Race Start December 11, 2020 4:57:40am UTC
Race Finish December 11, 2020 4:58:23am UTC
Outcome Win (1 of 3)
Accuracy 92.0%
Points 14.89
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")