-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathta_just_smiled.py
More file actions
35 lines (30 loc) · 881 Bytes
/
ta_just_smiled.py
File metadata and controls
35 lines (30 loc) · 881 Bytes
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
35
def conclusion():
print("I don't know why it wouldn't compile, \nMy TA just smiled.\n")
def love():
print("I added a cout << \"I <3 coding\",")
def escape():
print("I added a backslash to escape the quotes,")
def make_it():
print("I added a main to make it function,")
def scummy():
print("I added a function and called it scum(),")
print("I once wrote a program that wouldn't compile")
conclusion()
print("My program did nothing \nSo I started typing.")
love()
conclusion()
print("\"Parse error,\" cried the compiler \nLuckily I'm such a code baller.")
escape()
love()
conclusion()
print("Now the compiler wanted an identifier \nAnd I thought the situation was getting dire.")
make_it()
escape()
love()
conclusion()
print("Python complained it expected an enum \nBoy, these computers really are dumb!")
scummy()
make_it()
escape()
love()
conclusion()