Edu (edlofe)

Race #2

View Pit Stop page for race #2 by edlofeGhost race

View profile for Edu (edlofe)

Official speed 40.31 wpm (45.84 seconds elapsed during race)
Race Start June 20, 2023 10:21:17pm UTC
Race Finish June 20, 2023 10:22:03pm UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 14.11
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")