Akiraming (akiraming)

Race #69

View Pit Stop page for race #69 by akiramingGhost race

View profile for Akiraming (akiraming)

Official speed 40.14 wpm (46.04 seconds elapsed during race)
Race Start July 21, 2023 7:13:49am UTC
Race Finish July 21, 2023 7:14:35am UTC
Outcome No win (2 of 3)
Accuracy 96.0%
Points 14.05
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")