hobrin (hobrin)

Race #7

View Pit Stop page for race #7 by hobrinGhost race

View profile for hobrin (hobrin)

Official speed 60.48 wpm (30.56 seconds elapsed during race)
Race Start March 13, 2023 9:02:16pm UTC
Race Finish March 13, 2023 9:02:46pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 21.17
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")