Anon (gv_vik)

Race #19

View Pit Stop page for race #19 by gv_vikGhost race

View profile for Anon (gv_vik)

Official speed 34.53 wpm (53.52 seconds elapsed during race)
Race Start June 18, 2023 4:49:06am UTC
Race Finish June 18, 2023 4:50:00am UTC
Outcome Win (1 of 2)
Accuracy 95.0%
Points 12.08
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")