# This prints a list, with one entry per line.

def Print( list ):
    # This is supposed to print the whole list, but it only prints the
    # first entry
    print list[0]

def main():
    L = [3, 2, 1, 5, 7, 4, 8, 9]
    Print( L )

main()
