View Pit Stop page for race #1 by amit__123 — Ghost race
View profile for Amit (amit__123)
Official speed | 21.59 wpm (85.60 seconds elapsed during race) |
---|---|
Race Start | September 18, 2021 10:54:03am UTC |
Race Finish | September 18, 2021 10:55:29am UTC |
Outcome | No win (3 of 3) |
Accuracy | 90.0% |
Points | 7.56 |
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") |