Guillermo (schobzax)

Race #14

View Pit Stop page for race #14 by schobzaxGhost race

View profile for Guillermo (schobzax)

Official speed 76.23 wpm (24.24 seconds elapsed during race)
Race Start April 11, 2016 5:47:45pm UTC
Race Finish April 11, 2016 5:48:09pm UTC
Outcome No win (2 of 3)
Accuracy 93.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")