<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">"""
A module with a single greeting procedure

This module shows off a user-defined procedure, without using a function with no
return value

Author: Walker M. White
Date:   August 31, 2017 (Python 3 Version)
"""
'''
More testing
'''
# This is a comment
def greet(n):
    """
    Prints a greeting to the name n

    The greeting has format 'Hello &lt;n&gt;!' followed by a conversation starter.

    Parameter n: The name to use in the greeting
    Precondition: n is a nonempty string
    """
    print('This is a conversation using me:')
    print('Hello '+n+'!')
    print('How are you?')
    print("This is double quotes")
    v = 12
    if x:
        pass
    for x in [1,2,3]:
</pre></body></html>