Sne (clueless_af)

Race #8

View Pit Stop page for race #8 by clueless_afGhost race

View profile for Sne (clueless_af)

Official speed 23.92 wpm (77.26 seconds elapsed during race)
Race Start June 13, 2023 10:04:20am UTC
Race Finish June 13, 2023 10:05:37am UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 8.37
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")