🤺 (turboflames)

Race #127

View Pit Stop page for race #127 by turboflamesGhost race

View profile for 🤺 (turboflames)

Official speed 89.88 wpm (20.56 seconds elapsed during race)
Race Start June 27, 2021 2:10:12am UTC
Race Finish June 27, 2021 2:10:32am UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 31.46
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")