Anon (gv_vik)

Race #22

View Pit Stop page for race #22 by gv_vikGhost race

View profile for Anon (gv_vik)

Official speed 33.51 wpm (55.15 seconds elapsed during race)
Race Start June 18, 2023 3:17:54pm UTC
Race Finish June 18, 2023 3:18:49pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 11.73
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")