Angel (tribaaldos)

Race #58

View Pit Stop page for race #58 by tribaaldosGhost race

View profile for Angel (tribaaldos)

Official speed 88.59 wpm (20.86 seconds elapsed during race)
Race Start August 23, 2023 3:48:58am UTC
Race Finish August 23, 2023 3:49:18am UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 31.01
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")