Fuexfollets (fuexfollets)

Race #19

View Pit Stop page for race #19 by fuexfolletsGhost race

View profile for Fuexfollets (fuexfollets)

Official speed 77.07 wpm (23.98 seconds elapsed during race)
Race Start August 9, 2023 5:47:21pm UTC
Race Finish August 9, 2023 5:47:45pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 26.97
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")