diff --git a/hello.py b/hello.py index fbdc16a..8a0e58f 100755 --- a/hello.py +++ b/hello.py @@ -1,11 +1,14 @@ #!/usr/bin/env python3 def helloworld(): - pass + while(1): + print("Hello World") + + def add_numbers(x, y): x = x + y - pass + Pass if __name__ == '__main__': # do something!