0xtgk (0xtgk)

Race #157

View Pit Stop page for race #157 by 0xtgkGhost race

View profile for 0xtgk (0xtgk)

Official speed 46.54 wpm (39.71 seconds elapsed during race)
Race Start September 15, 2023 12:26:02am UTC
Race Finish September 15, 2023 12:26:41am UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 16.29
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")