sheilr (sheilr)

Race #1

View Pit Stop page for race #1 by sheilrGhost race

View profile for sheilr (sheilr)

Official speed 71.95 wpm (25.68 seconds elapsed during race)
Race Start May 15, 2020 7:57:15pm UTC
Race Finish May 15, 2020 7:57:41pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 25.18
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")