police (styrofoam)

Race #130

View Pit Stop page for race #130 by styrofoamGhost race

View profile for police (styrofoam)

Official speed 86.36 wpm (21.40 seconds elapsed during race)
Race Start November 1, 2018 6:52:47pm UTC
Race Finish November 1, 2018 6:53:09pm UTC
Outcome Win (1 of 2)
Opponents 2. atthetop (75.09 wpm)
Accuracy 98.0%
Points 30.23
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")