KEN (kent_type)

Race #20

View Pit Stop page for race #20 by kent_typeGhost race

View profile for KEN (kent_type)

Official speed 38.63 wpm (47.84 seconds elapsed during race)
Race Start June 23, 2023 1:18:11pm UTC
Race Finish June 23, 2023 1:18:59pm UTC
Outcome No win (2 of 3)
Accuracy 95.0%
Points 13.52
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")