twitch.tv/8shaz8 (shazman)

Race #7

View Pit Stop page for race #7 by shazmanGhost race

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

Official speed 105.64 wpm (17.49 seconds elapsed during race)
Race Start October 14, 2019 3:07:39pm UTC
Race Finish October 14, 2019 3:07:56pm UTC
Outcome No win (1 of 1)
Accuracy 98.0%
Points 36.97
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")