View Pit Stop page for race #25 by enochs — Ghost race
View profile for Enoch (enochs)
| Official speed | 28.44 wpm (64.98 seconds elapsed during race) |
|---|---|
| Race Start | February 7, 2011 1:18:05am UTC |
| Race Finish | February 7, 2011 1:19:10am 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") |