Connor (nellak)

Race #31

View Pit Stop page for race #31 by nellakGhost race

View profile for Connor (nellak)

Official speed 50.56 wpm (36.55 seconds elapsed during race)
Race Start January 27, 2018 6:12:07pm UTC
Race Finish January 27, 2018 6:12:43pm UTC
Outcome No win (2 of 3)
Accuracy 96.0%
Points 17.69
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")