sintyaku (sansyaku)

Race #12

View Pit Stop page for race #12 by sansyakuGhost race

View profile for sintyaku (sansyaku)

Official speed 65.32 wpm (28.29 seconds elapsed during race)
Race Start January 30, 2011 12:25:57pm UTC
Race Finish January 30, 2011 12:26:25pm UTC
Outcome Win (1 of 3)
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")