Last active
October 20, 2019 13:38
-
-
Save johnolafenwa/b05a5aeb5b228e64010a7de1c6719c55 to your computer and use it in GitHub Desktop.
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
function printLoop(text): | |
while True: | |
println(text) | |
if __name__ == "__main__": | |
printLoop("Hello") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment