Romer Jasen (aizen26)

Race #1

View Pit Stop page for race #1 by aizen26Ghost race

View profile for Romer Jasen (aizen26)

Official speed 22.70 wpm (81.41 seconds elapsed during race)
Race Start July 8, 2023 1:25:07pm UTC
Race Finish July 8, 2023 1:26:29pm UTC
Outcome No win (3 of 3)
Accuracy 91.0%
Points 7.95
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")