Tesla (pyromatical)

Race #6

View Pit Stop page for race #6 by pyromaticalGhost race

View profile for Tesla (pyromatical)

Official speed 45.18 wpm (40.90 seconds elapsed during race)
Race Start March 27, 2015 8:35:26pm UTC
Race Finish March 27, 2015 8:36:07pm UTC
Outcome Win (1 of 3)
Accuracy 98.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")