Principle (principle106)

Race #1

View Pit Stop page for race #1 by principle106Ghost race

View profile for Principle (principle106)

Official speed 66.77 wpm (27.68 seconds elapsed during race)
Race Start June 20, 2022 2:31:46am UTC
Race Finish June 20, 2022 2:32:13am UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 23.37
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")