spondunoob (spondulix)

Race #153

View Pit Stop page for race #153 by spondulixGhost race

View profile for spondunoob (spondulix)

Official speed 64.58 wpm (28.62 seconds elapsed during race)
Race Start July 23, 2019 3:23:10pm UTC
Race Finish July 23, 2019 3:23:38pm UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 22.60
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")