View Pit Stop page for race #57 by amnii — Ghost race
View profile for Amn1_putri_chan🕋 (amnii)
Official speed | 43.61 wpm (42.38 seconds elapsed during race) |
---|---|
Race Start | December 15, 2022 2:19:36pm UTC |
Race Finish | December 15, 2022 2:20:18pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 91.0% |
Points | 15.26 |
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") |