ghtjason (ghtjason)

Race #7

View Pit Stop page for race #7 by ghtjasonGhost race

View profile for ghtjason (ghtjason)

Official speed 72.08 wpm (25.64 seconds elapsed during race)
Race Start August 29, 2023 10:09:11am UTC
Race Finish August 29, 2023 10:09:36am UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 25.23
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")