djassdjd (nitrodac)

Race #2

View Pit Stop page for race #2 by nitrodacGhost race

View profile for djassdjd (nitrodac)

Official speed 35.83 wpm (51.58 seconds elapsed during race)
Race Start June 16, 2023 1:49:58pm UTC
Race Finish June 16, 2023 1:50:50pm UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 12.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")