(sidd_)

Race #190

View Pit Stop page for race #190 by sidd_Ghost race

View profile for (sidd_)

Official speed 117.88 wpm (15.68 seconds elapsed during race)
Race Start July 23, 2019 3:32:09pm UTC
Race Finish July 23, 2019 3:32:25pm UTC
Outcome Win (1 of 3)
Opponents 3. storm (60.70 wpm)
Accuracy 99.0%
Points 41.26
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")