twitch.tv/8shaz8 (shazman)

Race #6

View Pit Stop page for race #6 by shazmanGhost race

View profile for twitch.tv/8shaz8 (shazman)

Official speed 102.37 wpm (18.05 seconds elapsed during race)
Race Start October 14, 2019 3:07:10pm UTC
Race Finish October 14, 2019 3:07:28pm UTC
Outcome No win (1 of 1)
Accuracy 98.0%
Points 35.83
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")