LeSirH (lesirh)

Race #83

View Pit Stop page for race #83 by lesirhGhost race

View profile for LeSirH (lesirh)

Official speed 82.91 wpm (22.29 seconds elapsed during race)
Race Start September 2, 2019 6:32:39pm UTC
Race Finish September 2, 2019 6:33:01pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 29.02
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")