Neyool (neyool)

Race #73

View Pit Stop page for race #73 by neyoolGhost race

View profile for Neyool (neyool)

Official speed 39.04 wpm (47.34 seconds elapsed during race)
Race Start April 28, 2025 6:16:33am UTC
Race Finish April 28, 2025 6:17:20am UTC
Outcome No win (2 of 3)
Accuracy 98.0%
Points 13.66
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")