Zero (0gundam)

Race #7

View Pit Stop page for race #7 by 0gundamGhost race

View profile for Zero (0gundam)

Official speed 57.11 wpm (32.36 seconds elapsed during race)
Race Start March 17, 2011 5:01:03pm UTC
Race Finish March 17, 2011 5:01:35pm UTC
Outcome No win (2 of 2)
Opponents 1. languor (66.06 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")