Tessellation (nehemiah999)

Race #2

View Pit Stop page for race #2 by nehemiah999Ghost race

View profile for Tessellation (nehemiah999)

Official speed 46.06 wpm (40.12 seconds elapsed during race)
Race Start June 4, 2016 3:22:10am UTC
Race Finish June 4, 2016 3:22:50am UTC
Outcome No win (3 of 3)
Accuracy 86.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")