Alex (alexklaus)

Race #152

View Pit Stop page for race #152 by alexklausGhost race

View profile for Alex (alexklaus)

Official speed 65.17 wpm (28.36 seconds elapsed during race)
Race Start September 23, 2021 8:04:01pm UTC
Race Finish September 23, 2021 8:04:29pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 22.81
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")