Tobias (mechman)

Race #2

View Pit Stop page for race #2 by mechmanGhost race

View profile for Tobias (mechman)

Official speed 29.35 wpm (62.96 seconds elapsed during race)
Race Start April 16, 2017 9:30:59am UTC
Race Finish April 16, 2017 9:32:02am UTC
Outcome Win (1 of 3)
Accuracy 85.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")