Connor (nellak)

Race #26

View Pit Stop page for race #26 by nellakGhost race

View profile for Connor (nellak)

Official speed 52.77 wpm (35.02 seconds elapsed during race)
Race Start January 27, 2018 6:02:05pm UTC
Race Finish January 27, 2018 6:02:40pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 18.47
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")