Mahler9 (jeremy0d)

Race #1

View Pit Stop page for race #1 by jeremy0dGhost race

View profile for Mahler9 (jeremy0d)

Official speed 38.11 wpm (48.49 seconds elapsed during race)
Race Start April 11, 2017 5:39:54pm UTC
Race Finish April 11, 2017 5:40:43pm 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")