LeSirH (lesirh)

Race #90

View Pit Stop page for race #90 by lesirhGhost race

View profile for LeSirH (lesirh)

Official speed 73.00 wpm (25.32 seconds elapsed during race)
Race Start September 22, 2019 3:50:31pm UTC
Race Finish September 22, 2019 3:50:56pm UTC
Outcome Win (1 of 2)
Accuracy 95.0%
Points 25.55
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")