spondunoob (spondulix)

Race #232

View Pit Stop page for race #232 by spondulixGhost race

View profile for spondunoob (spondulix)

Official speed 90.42 wpm (20.44 seconds elapsed during race)
Race Start July 25, 2019 12:24:52am UTC
Race Finish July 25, 2019 12:25:12am UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 31.65
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")