spondunoob (spondulix)

Race #238

View Pit Stop page for race #238 by spondulixGhost race

View profile for spondunoob (spondulix)

Official speed 99.91 wpm (18.50 seconds elapsed during race)
Race Start July 25, 2019 1:12:48am UTC
Race Finish July 25, 2019 1:13:06am UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 34.97
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")