klenki (klenks)

Race #4

View Pit Stop page for race #4 by klenksGhost race

View profile for klenki (klenks)

Official speed 62.63 wpm (29.51 seconds elapsed during race)
Race Start March 2, 2021 4:39:03pm UTC
Race Finish March 2, 2021 4:39:32pm UTC
Outcome No win (3 of 3)
Accuracy 97.0%
Points 21.92
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")