Zero (0gundam)

Race #8

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

View profile for Zero (0gundam)

Official speed 64.53 wpm (28.64 seconds elapsed during race)
Race Start March 17, 2011 5:02:07pm UTC
Race Finish March 17, 2011 5:02:35pm UTC
Outcome No win (2 of 2)
Opponents 1. languor (68.04 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")