(bummered)

Race #1

View Pit Stop page for race #1 by bummeredGhost race

View profile for (bummered)

Official speed 56.70 wpm (32.59 seconds elapsed during race)
Race Start May 27, 2020 8:10:07pm UTC
Race Finish May 27, 2020 8:10:39pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 19.84
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")