gf (halaluka)

Race #15

View Pit Stop page for race #15 by halalukaGhost race

View profile for gf (halaluka)

Official speed 51.17 wpm (36.11 seconds elapsed during race)
Race Start August 27, 2023 7:03:05pm UTC
Race Finish August 27, 2023 7:03:41pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 17.91
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")