(e6f4e37l)

Race #20

View Pit Stop page for race #20 by e6f4e37lGhost race

View profile for (e6f4e37l)

Official speed 106.37 wpm (17.37 seconds elapsed during race)
Race Start July 3, 2021 8:57:08am UTC
Race Finish July 3, 2021 8:57:25am UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 37.23
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")