View Pit Stop page for race #329 by evil_alex — Ghost race
View profile for Alex (evil_alex)
Official speed | 53.42 wpm (34.59 seconds elapsed during race) |
---|---|
Race Start | February 16, 2025 5:37:56pm UTC |
Race Finish | February 16, 2025 5:38:31pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 96.0% |
Points | 18.70 |
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") |