Bob (dinosaw)

Race #1

View Pit Stop page for race #1 by dinosawGhost race

View profile for Bob (dinosaw)

Official speed 29.04 wpm (63.64 seconds elapsed during race)
Race Start May 28, 2023 2:43:43am UTC
Race Finish May 28, 2023 2:44:46am UTC
Outcome Win (1 of 2)
Opponents 2. kamardua (23.49 wpm)
Accuracy 93.0%
Points 10.16
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")