Skip to content
Getting Started

Getting Started

Python

hello.py
def say_hello():
    print("Hello!")

with lines

hello.py
1
2
3
4
5
def say_hello():
    print("Hello!")

def main():
    say_hello()