⭐️⭐️⭐️ (pbnl2)

Race #1

View Pit Stop page for race #1 by pbnl2Ghost race

View profile for ⭐️⭐️⭐️ (pbnl2)

Official speed 55.11 wpm (33.53 seconds elapsed during race)
Race Start July 22, 2019 7:26:52pm UTC
Race Finish July 22, 2019 7:27:25pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 19.29
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")