Yi-Fan (bioniclezx)

Race #465

View Pit Stop page for race #465 by bioniclezxGhost race

View profile for Yi-Fan (bioniclezx)

Official speed 61.25 wpm (30.17 seconds elapsed during race)
Race Start June 3, 2022 11:18:43am UTC
Race Finish June 3, 2022 11:19:14am UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 21.44
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")