Skip to content
Snippets Groups Projects
Commit e0e45370 authored by Matthew K Defenderfer's avatar Matthew K Defenderfer
Browse files

simplify package by putting the main function in __init__.py. No need for...

simplify package by putting the main function in __init__.py. No need for anything more complicated for such a simple example
parent 1637b8ef
No related branches found
No related tags found
No related merge requests found
from .hello import hello
def main():
return "Hello, World!"
\ No newline at end of file
def hello():
return "Hello, World!"
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment