Gabriel Felipe (gabrielfelipe)

Race #3

View Pit Stop page for race #3 by gabrielfelipeGhost race

View profile for Gabriel Felipe (gabrielfelipe)

Official speed 36.53 wpm (50.59 seconds elapsed during race)
Race Start July 11, 2023 11:35:35pm UTC
Race Finish July 11, 2023 11:36:26pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 12.78
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")