View Pit Stop page for race #3 by nurudianto — Ghost race
View profile for Mesut (nurudianto)
Official speed | 30.29 wpm (61.01 seconds elapsed during race) |
---|---|
Race Start | July 25, 2019 3:48:26pm UTC |
Race Finish | July 25, 2019 3:49:27pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 97.0% |
Points | 10.60 |
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") |