Jacob (vanosgaming2014)

Race #4

View Pit Stop page for race #4 by vanosgaming2014Ghost race

View profile for Jacob (vanosgaming2014)

Official speed 65.44 wpm (28.24 seconds elapsed during race)
Race Start September 19, 2021 2:54:16am UTC
Race Finish September 19, 2021 2:54:44am UTC
Outcome No win (2 of 3)
Opponents 1. d3b1 (71.37 wpm)
Accuracy 94.0%
Points 22.91
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")