johnny (porkmania)

Race #2

View Pit Stop page for race #2 by porkmaniaGhost race

View profile for johnny (porkmania)

Official speed 46.20 wpm (40.00 seconds elapsed during race)
Race Start January 31, 2023 9:19:16pm UTC
Race Finish January 31, 2023 9:19:56pm UTC
Outcome Win (1 of 2)
Opponents 2. ventura127 (35.46 wpm)
Accuracy 94.0%
Points 16.17
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")