#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Wed Sep 27 19:47:58 2017

@author: jaques
"""#
# Script foo.py
#
if __name__ == '__main__':   # $python foo.py
    print('me executou pelo terminal')
else:
    print('me executou como um módulo') # import foo

