Andy (dlegend27)

Race #1

View Pit Stop page for race #1 by dlegend27Ghost race

View profile for Andy (dlegend27)

Official speed 50.88 wpm (36.32 seconds elapsed during race)
Race Start August 11, 2023 7:37:03am UTC
Race Finish August 11, 2023 7:37:39am UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 17.81
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")