senok (itskones)

Race #2

View Pit Stop page for race #2 by itskonesGhost race

View profile for senok (itskones)

Official speed 99.16 wpm (18.64 seconds elapsed during race)
Race Start September 20, 2023 4:05:22am UTC
Race Finish September 20, 2023 4:05:40am UTC
Outcome No win (2 of 3)
Accuracy 98.0%
Points 34.71
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")