View Pit Stop page for race #154 by hellothen — Ghost race
View profile for SalmanMKC (hellothen)
Official speed | 67.38 wpm (27.43 seconds elapsed during race) |
---|---|
Race Start | August 24, 2021 8:57:46pm UTC |
Race Finish | August 24, 2021 8:58:13pm UTC |
Outcome | No win (2 of 2) |
Accuracy | 96.0% |
Points | 23.58 |
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") |