Skip to content

Instantly share code, notes, and snippets.

@denstream-io
Last active June 20, 2022 15:42
Show Gist options
  • Save denstream-io/7e6521efe61c3385a23dc4dd14577304 to your computer and use it in GitHub Desktop.
Save denstream-io/7e6521efe61c3385a23dc4dd14577304 to your computer and use it in GitHub Desktop.
Hello, world
def main():
name = input("What's your name? ")
print(hello(name))
def hello(to="world"):
return f"hello, {to}"
if __name__ == "__main__":
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment