PicturingFrames (frame_ability)

Race #162

View Pit Stop page for race #162 by frame_abilityGhost race

View profile for PicturingFrames (frame_ability)

Official speed 64.76 wpm (28.54 seconds elapsed during race)
Race Start September 20, 2022 12:08:57pm UTC
Race Finish September 20, 2022 12:09:25pm UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 22.67
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")