View Pit Stop page for race #1 by typist2 — Ghost race
View profile for Aditya Prakash (typist2)
Official speed | 25.85 wpm (71.49 seconds elapsed during race) |
---|---|
Race Start | January 28, 2011 2:38:15pm UTC |
Race Finish | January 28, 2011 2:39:26pm UTC |
Outcome | No win (2 of 2) |
Opponents |
1. saurabhjain (26.63 wpm) |
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") |