Last active
June 29, 2025 02:43
-
-
Save jph00/e7cfd4ded593e8ef6217e78a0131960c to your computer and use it in GitHub Desktop.
Gist import test file
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
"This is a test module which makes some simple tools available." | |
__all__ = ["hi","whoami"] | |
testfoo='testbar' | |
def hi( | |
who:str # who to say hi to | |
): | |
"Say hi to `who`" | |
return f"Hello {who}" | |
def bye( | |
who:str # who to say bye to | |
): | |
"Say hi to `who`" | |
return f"Goodbye {who}" | |
def whoami(): | |
"Tell me who I am" | |
return "You are solveit, the dialog master!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment