☺ (xiliav11)

Race #2

View Pit Stop page for race #2 by xiliav11Ghost race

View profile for ☺ (xiliav11)

Official speed 33.68 wpm (54.87 seconds elapsed during race)
Race Start December 13, 2011 10:16:48pm UTC
Race Finish December 13, 2011 10:17:43pm UTC
Outcome No win (2 of 2)
Opponents 1. sgflyby (38.70 wpm)
Accuracy 79.0%
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")