Not My (random31415)

Race #1

View Pit Stop page for race #1 by random31415Ghost race

View profile for Not My (random31415)

Official speed 67.25 wpm (27.48 seconds elapsed during race)
Race Start March 9, 2017 11:10:42pm UTC
Race Finish March 9, 2017 11:11:09pm 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")