View Pit Stop page for race #1 by someoneigna — Ghost race
View profile for Nadie-IGN (someoneigna)
Official speed | 40.62 wpm (45.49 seconds elapsed during race) |
---|---|
Race Start | March 24, 2011 2:41:30am UTC |
Race Finish | March 24, 2011 2:42:15am UTC |
Outcome | No win (1 of 1) |
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") |