hack89 (hack89)

Race #3

View Pit Stop page for race #3 by hack89Ghost race

View profile for hack89 (hack89)

Official speed 37.00 wpm (49.95 seconds elapsed during race)
Race Start January 6, 2022 1:10:31am UTC
Race Finish January 6, 2022 1:11:21am UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 12.95
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")