Neyool (neyool)

Race #144

View Pit Stop page for race #144 by neyoolGhost race

View profile for Neyool (neyool)

Official speed 51.12 wpm (36.15 seconds elapsed during race)
Race Start May 14, 2025 8:21:43am UTC
Race Finish May 14, 2025 8:22:19am UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 17.89
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")