olari (olaridv)

Race #5

View Pit Stop page for race #5 by olaridvGhost race

View profile for olari (olaridv)

Official speed 74.68 wpm (24.75 seconds elapsed during race)
Race Start October 9, 2019 7:13:42am UTC
Race Finish October 9, 2019 7:14:07am UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 26.14
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")