Brian (briantang)

Race #9

View Pit Stop page for race #9 by briantangGhost race

View profile for Brian (briantang)

Official speed 64.57 wpm (28.62 seconds elapsed during race)
Race Start May 23, 2023 4:54:15am UTC
Race Finish May 23, 2023 4:54:43am UTC
Outcome No win (2 of 3)
Accuracy 97.0%
Points 22.60
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")