Connor (nellak)

Race #34

View Pit Stop page for race #34 by nellakGhost race

View profile for Connor (nellak)

Official speed 55.68 wpm (33.19 seconds elapsed during race)
Race Start January 27, 2018 6:15:31pm UTC
Race Finish January 27, 2018 6:16:04pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 19.49
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")