Miku (mikuhatsune)

Race #11

View Pit Stop page for race #11 by mikuhatsuneGhost race

View profile for Miku (mikuhatsune)

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