Youssef (sec5x)

Race #10

View Pit Stop page for race #10 by sec5xGhost race

View profile for Youssef (sec5x)

Official speed 70.11 wpm (26.36 seconds elapsed during race)
Race Start December 30, 2022 9:35:25am UTC
Race Finish December 30, 2022 9:35:51am UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 24.54
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")