Yasin (emon253)

Race #2

View Pit Stop page for race #2 by emon253Ghost race

View profile for Yasin (emon253)

Official speed 25.67 wpm (71.99 seconds elapsed during race)
Race Start May 25, 2023 11:06:24am UTC
Race Finish May 25, 2023 11:07:36am UTC
Outcome Win (1 of 2)
Accuracy 92.0%
Points 8.98
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")