Mikhail (mayham92)

Race #562

View Pit Stop page for race #562 by mayham92Ghost race

View profile for Mikhail (mayham92)

Official speed 72.47 wpm (25.50 seconds elapsed during race)
Race Start January 5, 2022 8:40:23pm UTC
Race Finish January 5, 2022 8:40:49pm UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 25.37
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")