Source code for stamps_ad.example_module

"""An example module containing simplistic functions."""


[docs] def greetings() -> str: """A friendly greeting for a future friend. Returns ------- str A typical greeting from a software engineer. """ return "Hello from LINCC-Frameworks!"
[docs] def meaning() -> int: """The meaning of life, the universe, and everything. Returns ------- int The meaning of life. """ return 42