-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmagicAI.py
34 lines (32 loc) · 1.09 KB
/
magicAI.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#HELO WORLD!!!!
#This is a test of the emergency broadcast system. This is only a test.
#This is a test of the emergency broadcast system. This is only a test.
#This is a test of the emergency broadcast system. This is only a test.
#This is a test of the emergency broadcast system. This is only a test.
def helloFawkinWerld():
message = "Hello World!"
print(message)
return message
def main():
helloFawkinWerld()
#do stuff
print("I'm done now")
print("I'm done now")
print("I'm done now")
print("I'm done now")
print("Now I'm done")
print("Now I'm done")
print("New line")
print("never gonna give you up")
print("never gonna let you down")
print("never gonna run around and desert you")
print("never gonna make you cry")
print("never gonna say goodbye")
print("never gonna tell a lie and hurt you")
print("never gonna give you up")
print("never gonna let you down")
print("never gonna run around and desert you")
print("never gonna make you cry")
print("never gonna say goodbye")
if __name__ == "__main__":
main()