Skip to content
Snippets Groups Projects
core.py 202 B
Newer Older
  • Learn to ignore specific revisions
  • Kenneth Reitz's avatar
    Kenneth Reitz committed
    # -*- coding: utf-8 -*-
    
    from . import helpers
    
    Kenneth Reitz's avatar
    Kenneth Reitz committed
    
    def get_hmm():
        """Get a thought."""
        return 'hmmm...'
    
    
    Kenneth Reitz's avatar
    Kenneth Reitz committed
    def hmm():
        """Contemplation..."""
    
        if helpers.get_answer():
            print(get_hmm())