into-the-abyss (_yash_)

Race #2

View Pit Stop page for race #2 by _yash_Ghost race

View profile for into-the-abyss (_yash_)

Official speed 36.30 wpm (50.91 seconds elapsed during race)
Race Start June 2, 2023 12:15:26pm UTC
Race Finish June 2, 2023 12:16:17pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 12.70
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")