@Ghost (avenger_akr)

Race #1

View Pit Stop page for race #1 by avenger_akrGhost race

View profile for @Ghost (avenger_akr)

Official speed 22.23 wpm (83.13 seconds elapsed during race)
Race Start June 13, 2023 10:54:16am UTC
Race Finish June 13, 2023 10:55:39am UTC
Outcome No win (3 of 3)
Accuracy 93.0%
Points 7.78
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")