Taro (yada)

Race #54

View Pit Stop page for race #54 by yadaGhost race

View profile for Taro (yada)

Official speed 105.08 wpm (17.59 seconds elapsed during race)
Race Start May 3, 2015 3:15:50pm UTC
Race Finish May 3, 2015 3:16:08pm UTC
Outcome Win (1 of 2)
Accuracy 99.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")