(sura5)

Race #15

View Pit Stop page for race #15 by sura5Ghost race

View profile for (sura5)

Official speed 36.08 wpm (51.22 seconds elapsed during race)
Race Start February 17, 2022 2:55:02pm UTC
Race Finish February 17, 2022 2:55:53pm UTC
Outcome No win (3 of 2)
Opponents 1. scraex (48.55 wpm)
2. jasimk (41.97 wpm)
Accuracy 92.0%
Points 12.63
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")