Jeff (jjj11x)

Race #2

View Pit Stop page for race #2 by jjj11xGhost race

View profile for Jeff (jjj11x)

Official speed 59.09 wpm (31.27 seconds elapsed during race)
Race Start January 13, 2021 6:21:59am UTC
Race Finish January 13, 2021 6:22:30am UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 20.68
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")