se (simops)

Race #2

View Pit Stop page for race #2 by simopsGhost race

View profile for se (simops)

Official speed 62.46 wpm (29.59 seconds elapsed during race)
Race Start August 28, 2023 2:17:58pm UTC
Race Finish August 28, 2023 2:18:28pm UTC
Outcome Win (1 of 2)
Opponents 2. schloemi (45.85 wpm)
Accuracy 93.0%
Points 21.86
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")