🤺 (turboflames)

Race #203

View Pit Stop page for race #203 by turboflamesGhost race

View profile for 🤺 (turboflames)

Official speed 76.92 wpm (24.03 seconds elapsed during race)
Race Start July 8, 2021 2:18:24am UTC
Race Finish July 8, 2021 2:18:48am UTC
Outcome No win (2 of 3)
Accuracy 96.0%
Points 26.92
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")