⌨️🖱️ (t_0nio)

Race #2

View Pit Stop page for race #2 by t_0nioGhost race

View profile for ⌨️🖱️ (t_0nio)

Official speed 55.45 wpm (33.33 seconds elapsed during race)
Race Start October 12, 2020 6:08:00pm UTC
Race Finish October 12, 2020 6:08:34pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 19.41
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")