Riddy (songridv)

Race #1

View Pit Stop page for race #1 by songridvGhost race

View profile for Riddy (songridv)

Official speed 43.83 wpm (42.16 seconds elapsed during race)
Race Start June 6, 2023 6:00:42pm UTC
Race Finish June 6, 2023 6:01:24pm UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 15.34
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")