Anon (gv_vik)

Race #32

View Pit Stop page for race #32 by gv_vikGhost race

View profile for Anon (gv_vik)

Official speed 36.28 wpm (50.94 seconds elapsed during race)
Race Start July 9, 2023 3:15:53pm UTC
Race Finish July 9, 2023 3:16:44pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 12.70
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")