LR (lenko)

Race #9

View Pit Stop page for race #9 by lenkoGhost race

View profile for LR (lenko)

Official speed 34.93 wpm (52.91 seconds elapsed during race)
Race Start April 13, 2016 8:09:15am UTC
Race Finish April 13, 2016 8:10:08am UTC
Outcome Win (1 of 3)
Accuracy 96.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")