View Pit Stop page for race #1 by 1phoenix1 — Ghost race
View profile for ಠ_ಠ (1phoenix1)
Official speed | 31.00 wpm (59.61 seconds elapsed during race) |
---|---|
Race Start | February 16, 2011 8:56:25am UTC |
Race Finish | February 16, 2011 8:57:24am UTC |
Outcome | No win (2 of 3) |
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") |