z (zivry)

Race #31

View Pit Stop page for race #31 by zivryGhost race

View profile for z (zivry)

Official speed 39.05 wpm (47.32 seconds elapsed during race)
Race Start December 14, 2021 8:37:54pm UTC
Race Finish December 14, 2021 8:38:41pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 13.67
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")