Michele (_mccc)

Race #1

View Pit Stop page for race #1 by _mcccGhost race

View profile for Michele (_mccc)

Official speed 29.15 wpm (63.40 seconds elapsed during race)
Race Start April 25, 2018 1:23:53pm UTC
Race Finish April 25, 2018 1:24:57pm UTC
Outcome No win (2 of 2)
Accuracy 94.0%
Points 10.20
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")