PicturingFrames (frame_ability)

Race #62

View Pit Stop page for race #62 by frame_abilityGhost race

View profile for PicturingFrames (frame_ability)

Official speed 66.06 wpm (27.97 seconds elapsed during race)
Race Start July 6, 2022 6:31:44am UTC
Race Finish July 6, 2022 6:32:12am UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 23.12
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")