Youssef (sec5x)

Race #2

View Pit Stop page for race #2 by sec5xGhost race

View profile for Youssef (sec5x)

Official speed 82.29 wpm (22.46 seconds elapsed during race)
Race Start December 30, 2022 8:52:49am UTC
Race Finish December 30, 2022 8:53:11am UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 28.80
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")