nullchilly (tuwuna)

Race #33

View Pit Stop page for race #33 by tuwunaGhost race

View profile for nullchilly (tuwuna)

Official speed 74.53 wpm (24.80 seconds elapsed during race)
Race Start November 13, 2021 11:36:19am UTC
Race Finish November 13, 2021 11:36:44am UTC
Outcome No win (2 of 3)
Accuracy 98.0%
Points 26.09
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")