spondunoob (spondulix)

Race #474

View Pit Stop page for race #474 by spondulixGhost race

View profile for spondunoob (spondulix)

Official speed 112.35 wpm (16.45 seconds elapsed during race)
Race Start June 17, 2020 2:10:56pm UTC
Race Finish June 17, 2020 2:11:13pm UTC
Outcome No win (1 of 1)
Accuracy 99.0%
Points 39.32
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")