Be or not be? It's the question... (textosnovos)

Race #3

View Pit Stop page for race #3 by textosnovosGhost race

View profile for Be or not be? It's the question... (textosnovos)

Official speed 53.57 wpm (34.50 seconds elapsed during race)
Race Start October 16, 2017 1:57:36am UTC
Race Finish October 16, 2017 1:58:10am UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 18.75
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")