oop (ayuayu)

Race #15

View Pit Stop page for race #15 by ayuayuGhost race

View profile for oop (ayuayu)

Official speed 87.85 wpm (21.04 seconds elapsed during race)
Race Start November 19, 2014 12:18:36pm UTC
Race Finish November 19, 2014 12:18:57pm UTC
Outcome No win (2 of 3)
Accuracy 97.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")