juutiju (juutiju)

Race #10

View Pit Stop page for race #10 by juutijuGhost race

View profile for juutiju (juutiju)

Official speed 47.30 wpm (39.07 seconds elapsed during race)
Race Start August 20, 2019 11:25:13pm UTC
Race Finish August 20, 2019 11:25:52pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 16.56
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")