(scraex)

Race #158

View Pit Stop page for race #158 by scraexGhost race

View profile for (scraex)

Official speed 58.22 wpm (31.74 seconds elapsed during race)
Race Start March 27, 2022 1:28:41pm UTC
Race Finish March 27, 2022 1:29:13pm UTC
Outcome Win (1 of 2)
Opponents 2. peaceinchrist (58.01 wpm)
Accuracy 92.0%
Points 20.38
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")