LeSirH (lesirh)

Race #99

View Pit Stop page for race #99 by lesirhGhost race

View profile for LeSirH (lesirh)

Official speed 80.89 wpm (22.85 seconds elapsed during race)
Race Start November 27, 2019 9:14:02pm UTC
Race Finish November 27, 2019 9:14:25pm UTC
Outcome No win (2 of 3)
Opponents 1. arc_sec (102.54 wpm)
3. henryv70 (49.23 wpm)
Accuracy 97.0%
Points 28.31
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")