spondunoob (spondulix)

Race #128

View Pit Stop page for race #128 by spondulixGhost race

View profile for spondunoob (spondulix)

Official speed 70.45 wpm (26.23 seconds elapsed during race)
Race Start July 23, 2019 1:28:58am UTC
Race Finish July 23, 2019 1:29:24am UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 24.66
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")