Johan (johlun)

Race #1

View Pit Stop page for race #1 by johlunGhost race

View profile for Johan (johlun)

Official speed 51.79 wpm (35.68 seconds elapsed during race)
Race Start September 15, 2022 8:17:30pm UTC
Race Finish September 15, 2022 8:18:05pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 18.12
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")