Daniel (kix512)

Race #9

View Pit Stop page for race #9 by kix512Ghost race

View profile for Daniel (kix512)

Official speed 36.42 wpm (50.74 seconds elapsed during race)
Race Start March 29, 2023 4:25:01pm UTC
Race Finish March 29, 2023 4:25:52pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 12.75
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")