ungabunga (ungabungaoobunga)

Race #1

View Pit Stop page for race #1 by ungabungaoobungaGhost race

View profile for ungabunga (ungabungaoobunga)

Official speed 48.93 wpm (37.77 seconds elapsed during race)
Race Start November 19, 2020 1:22:17am UTC
Race Finish November 19, 2020 1:22:55am UTC
Outcome Win (1 of 2)
Accuracy 94.0%
Points 17.13
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")