dani (dani32)

Race #2

View Pit Stop page for race #2 by dani32Ghost race

View profile for dani (dani32)

Official speed 35.90 wpm (51.48 seconds elapsed during race)
Race Start July 4, 2023 11:52:21am UTC
Race Finish July 4, 2023 11:53:13am UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 12.56
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")