View Pit Stop page for race #25 by indo_european_sun_god — Ghost race
View profile for INDO EUROPEAN (indo_european_sun_god)
Official speed | 43.13 wpm (42.85 seconds elapsed during race) |
---|---|
Race Start | February 17, 2022 2:40:24pm UTC |
Race Finish | February 17, 2022 2:41:07pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 95.0% |
Points | 15.09 |
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") |