dotdotdot (atuladhar1)

Race #225

View Pit Stop page for race #225 by atuladhar1Ghost race

View profile for dotdotdot (atuladhar1)

Official speed 71.70 wpm (25.77 seconds elapsed during race)
Race Start July 1, 2023 9:40:25pm UTC
Race Finish July 1, 2023 9:40:51pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 25.10
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")