spondunoob (spondulix)

Race #72

View Pit Stop page for race #72 by spondulixGhost race

View profile for spondunoob (spondulix)

Official speed 86.78 wpm (21.30 seconds elapsed during race)
Race Start July 22, 2019 12:38:48am UTC
Race Finish July 22, 2019 12:39:09am UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 30.37
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")