police (styrofoam)

Race #144

View Pit Stop page for race #144 by styrofoamGhost race

View profile for police (styrofoam)

Official speed 82.70 wpm (22.35 seconds elapsed during race)
Race Start January 27, 2019 10:40:58pm UTC
Race Finish January 27, 2019 10:41:20pm UTC
Outcome No win (3 of 5)
Opponents 1. sidd_ (117.15 wpm)
2. delirious (87.17 wpm)
4. poem (61.70 wpm)
5. hellothen (53.35 wpm)
Accuracy 97.0%
Points 28.94
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")