ぴくるす (danny45)

Race #10

View Pit Stop page for race #10 by danny45Ghost race

View profile for ぴくるす (danny45)

Official speed 57.37 wpm (32.21 seconds elapsed during race)
Race Start January 30, 2011 4:06:01pm UTC
Race Finish January 30, 2011 4:06:33pm UTC
Outcome No win (5 of 6)
Opponents 1. mikuhatsune (83.06 wpm)
2. atenza (66.22 wpm)
3. 2getter (61.02 wpm)
4. badomiso (58.36 wpm)
6. guda (55.68 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")