Leo (leo8786)

Race #2

View Pit Stop page for race #2 by leo8786Ghost race

View profile for Leo (leo8786)

Official speed 83.85 wpm (22.04 seconds elapsed during race)
Race Start October 13, 2020 3:55:52pm UTC
Race Finish October 13, 2020 3:56:14pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 29.35
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")