⭐️⭐️⭐️ (pbnl2)

Race #2

View Pit Stop page for race #2 by pbnl2Ghost race

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

Official speed 62.48 wpm (29.58 seconds elapsed during race)
Race Start July 22, 2019 7:31:02pm UTC
Race Finish July 22, 2019 7:31:31pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 21.87
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")