Jesus (pikmin6000)

Race #1

View Pit Stop page for race #1 by pikmin6000Ghost race

View profile for Jesus (pikmin6000)

Official speed 30.63 wpm (60.33 seconds elapsed during race)
Race Start July 24, 2018 8:18:41pm UTC
Race Finish July 24, 2018 8:19:41pm UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 10.72
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")