Natalia (mnich47)

Race #2

View Pit Stop page for race #2 by mnich47Ghost race

View profile for Natalia (mnich47)

Official speed 71.51 wpm (25.84 seconds elapsed during race)
Race Start May 22, 2023 12:52:51pm UTC
Race Finish May 22, 2023 12:53:16pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 25.03
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")