Created
March 11, 2026 09:59
-
-
Save RuliLG/d395569c22f0415a75530e8ac64bcdc9 to your computer and use it in GitHub Desktop.
Python greet snippet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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