Senpai~~ (_senpai__)

Race #4

View Pit Stop page for race #4 by _senpai__Ghost race

View profile for Senpai~~ (_senpai__)

Official speed 35.99 wpm (51.35 seconds elapsed during race)
Race Start August 29, 2023 3:18:55pm UTC
Race Finish August 29, 2023 3:19:46pm UTC
Outcome Win (1 of 2)
Accuracy 94.0%
Points 12.60
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")