(nt_chill)

Race #2

View Pit Stop page for race #2 by nt_chillGhost race

View profile for   (nt_chill)

Official speed 72.67 wpm (25.43 seconds elapsed during race)
Race Start June 29, 2023 2:56:19am UTC
Race Finish June 29, 2023 2:56:45am UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 25.43
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")