spondunoob (spondulix)

Race #452

View Pit Stop page for race #452 by spondulixGhost race

View profile for spondunoob (spondulix)

Official speed 109.19 wpm (16.92 seconds elapsed during race)
Race Start October 17, 2019 11:44:17pm UTC
Race Finish October 17, 2019 11:44:34pm UTC
Outcome No win (1 of 1)
Accuracy 99.0%
Points 38.22
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")