TheBossOfTheBoss (thebossoftheboss_7)

Race #6

View Pit Stop page for race #6 by thebossoftheboss_7Ghost race

View profile for TheBossOfTheBoss (thebossoftheboss_7)

Official speed 53.60 wpm (34.48 seconds elapsed during race)
Race Start July 10, 2023 11:44:27am UTC
Race Finish July 10, 2023 11:45:02am UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 18.76
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")