Jacob (vanosgaming2014)

Race #15

View Pit Stop page for race #15 by vanosgaming2014Ghost race

View profile for Jacob (vanosgaming2014)

Official speed 75.21 wpm (24.57 seconds elapsed during race)
Race Start January 15, 2022 7:50:39pm UTC
Race Finish January 15, 2022 7:51:04pm UTC
Outcome Win (1 of 4)
Accuracy 93.0%
Points 26.32
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")