mohamed samir (3agwa_79)

Race #143

View Pit Stop page for race #143 by 3agwa_79Ghost race

View profile for mohamed samir (3agwa_79)

Official speed 73.47 wpm (25.15 seconds elapsed during race)
Race Start May 30, 2023 4:42:32pm UTC
Race Finish May 30, 2023 4:42:57pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 25.72
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")