spondunoob (spondulix)

Race #148

View Pit Stop page for race #148 by spondulixGhost race

View profile for spondunoob (spondulix)

Official speed 78.12 wpm (23.66 seconds elapsed during race)
Race Start July 23, 2019 3:18:32pm UTC
Race Finish July 23, 2019 3:18:55pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 27.34
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")