Ye (very_vrooooom)

Race #10

View Pit Stop page for race #10 by very_vrooooomGhost race

View profile for Ye (very_vrooooom)

Official speed 38.47 wpm (48.04 seconds elapsed during race)
Race Start August 13, 2023 5:04:42pm UTC
Race Finish August 13, 2023 5:05:30pm UTC
Outcome No win (3 of 3)
Accuracy 93.0%
Points 13.46
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")