#!/usr/bin/env python3
import pprint

# Read a file passed in as a commandline argument
# Count the occurances of each word
# You should count words regardless of case
# (Example: 'The' should be the same as 'the' or 'THE')
# Print your dictionary using pretty print