spondunoob (spondulix)

Race #154

View Pit Stop page for race #154 by spondulixGhost race

View profile for spondunoob (spondulix)

Official speed 79.95 wpm (23.11 seconds elapsed during race)
Race Start July 23, 2019 3:24:38pm UTC
Race Finish July 23, 2019 3:25:01pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 27.98
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")