Justin (psyframelordomega)

Race #6

View Pit Stop page for race #6 by psyframelordomegaGhost race

View profile for Justin (psyframelordomega)

Official speed 61.74 wpm (29.93 seconds elapsed during race)
Race Start May 28, 2017 4:09:33pm UTC
Race Finish May 28, 2017 4:10:03pm UTC
Outcome No win (2 of 2)
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")