PicturingFrames (frame_ability)

Race #181

View Pit Stop page for race #181 by frame_abilityGhost race

View profile for PicturingFrames (frame_ability)

Official speed 82.30 wpm (22.45 seconds elapsed during race)
Race Start September 25, 2022 7:58:41am UTC
Race Finish September 25, 2022 7:59:03am UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 28.80
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")