spondunoob (spondulix)

Race #252

View Pit Stop page for race #252 by spondulixGhost race

View profile for spondunoob (spondulix)

Official speed 84.93 wpm (21.76 seconds elapsed during race)
Race Start July 25, 2019 3:50:48am UTC
Race Finish July 25, 2019 3:51:09am UTC
Outcome No win (3 of 3)
Accuracy 98.0%
Points 29.73
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")