typeracerplays (typeracerplays)

Race #4

View Pit Stop page for race #4 by typeracerplaysGhost race

View profile for typeracerplays (typeracerplays)

Official speed 89.33 wpm (20.69 seconds elapsed during race)
Race Start May 28, 2018 11:29:02am UTC
Race Finish May 28, 2018 11:29:23am UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 31.26
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")