ibrahim (resto420)

Race #2

View Pit Stop page for race #2 by resto420Ghost race

View profile for ibrahim (resto420)

Official speed 22.73 wpm (81.30 seconds elapsed during race)
Race Start June 6, 2023 2:52:38am UTC
Race Finish June 6, 2023 2:53:59am UTC
Outcome No win (3 of 3)
Accuracy 92.0%
Points 7.96
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")