sofa (sofaaa)

Race #10

View Pit Stop page for race #10 by sofaaaGhost race

View profile for sofa (sofaaa)

Official speed 47.28 wpm (39.09 seconds elapsed during race)
Race Start July 30, 2021 7:23:50pm UTC
Race Finish July 30, 2021 7:24:29pm UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 16.55
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")