View Pit Stop page for race #160 by scraex — Ghost race
Official speed | 63.99 wpm (28.88 seconds elapsed during race) |
---|---|
Race Start | March 27, 2022 1:31:07pm UTC |
Race Finish | March 27, 2022 1:31:36pm UTC |
Outcome | No win (2 of 2) |
Opponents |
1. peaceinchrist (64.53 wpm) |
Accuracy | 94.0% |
Points | 22.40 |
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") |