HS (hs_bowi)

Race #1

View Pit Stop page for race #1 by hs_bowiGhost race

View profile for HS (hs_bowi)

Official speed 25.52 wpm (72.41 seconds elapsed during race)
Race Start November 23, 2020 3:05:04am UTC
Race Finish November 23, 2020 3:06:17am UTC
Outcome No win (3 of 3)
Accuracy 89.0%
Points 8.93
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")