# myFirstProgram.py # simply prints "Hello, world!" def main(): # definition of method/function/behavior main print("Hello, world!"); # semicolon is usually omitted in Python, indent is a must here main()