Skip to content

Instantly share code, notes, and snippets.

@RuliLG
Created March 11, 2026 09:59
Show Gist options
  • Select an option

  • Save RuliLG/d395569c22f0415a75530e8ac64bcdc9 to your computer and use it in GitHub Desktop.

Select an option

Save RuliLG/d395569c22f0415a75530e8ac64bcdc9 to your computer and use it in GitHub Desktop.
Python greet snippet
def greet(name: str) -> str:
return f"Hello, {name}! Welcome aboard."
if __name__ == "__main__":
print(greet("world"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment