Alan (alanrizky)

Race #1

View Pit Stop page for race #1 by alanrizkyGhost race

View profile for Alan (alanrizky)

Official speed 49.23 wpm (37.54 seconds elapsed during race)
Race Start May 30, 2023 7:27:02am UTC
Race Finish May 30, 2023 7:27:39am UTC
Outcome Win (1 of 3)
Accuracy 92.0%
Points 17.23
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")