Skip to content

Instantly share code, notes, and snippets.

@jph00
Last active June 29, 2025 02:43
Show Gist options
  • Save jph00/e7cfd4ded593e8ef6217e78a0131960c to your computer and use it in GitHub Desktop.
Save jph00/e7cfd4ded593e8ef6217e78a0131960c to your computer and use it in GitHub Desktop.
Gist import test file
"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