⭐️⭐️⭐️ (pbnl2)

Race #17

View Pit Stop page for race #17 by pbnl2Ghost race

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

Official speed 64.58 wpm (28.62 seconds elapsed during race)
Race Start March 31, 2020 6:43:55pm UTC
Race Finish March 31, 2020 6:44:24pm UTC
Outcome No win (2 of 3)
Accuracy 97.0%
Points 22.60
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")