Phillip (littlebigphil)

Race #8

View Pit Stop page for race #8 by littlebigphilGhost race

View profile for Phillip (littlebigphil)

Official speed 53.08 wpm (34.82 seconds elapsed during race)
Race Start February 15, 2016 3:55:01pm UTC
Race Finish February 15, 2016 3:55:36pm 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")