View Pit Stop page for race #34 by fa1progra — Ghost race
View profile for Augusto Aguilar (fa1progra)
Official speed | 32.30 wpm (57.21 seconds elapsed during race) |
---|---|
Race Start | June 15, 2025 12:41:18am UTC |
Race Finish | June 15, 2025 12:42:15am UTC |
Outcome | No win (5 of 19) |
Opponents |
7. fanor (28.25 wpm) |
Accuracy | 85.0% |
Points | 11.30 |
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") |