View Pit Stop page for race #4 by yumeai — Ghost race
View profile for Yume (夢) (yumeai)
Official speed | 55.72 wpm (33.17 seconds elapsed during race) |
---|---|
Race Start | December 23, 2011 5:04:56am UTC |
Race Finish | December 23, 2011 5:05:30am UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 0.00 |
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") |