℮ (nicepal)

Race #1

View Pit Stop page for race #1 by nicepalGhost race

View profile for ℮ (nicepal)

Official speed 64.86 wpm (28.49 seconds elapsed during race)
Race Start May 25, 2021 11:22:04am UTC
Race Finish May 25, 2021 11:22:33am UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 22.70
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")