Sne (clueless_af)

Race #20

View Pit Stop page for race #20 by clueless_afGhost race

View profile for Sne (clueless_af)

Official speed 29.03 wpm (63.66 seconds elapsed during race)
Race Start June 14, 2023 3:04:26am UTC
Race Finish June 14, 2023 3:05:30am UTC
Outcome Win (1 of 2)
Accuracy 95.0%
Points 10.16
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")