You Know You're A Geek When...
... you've just started teaching yourself basic coding and writing the following elicits a full on happy dance:
			- Code: Select all
 OpenConsole()
a.l = 1
b.l = 2
PrintN("A = " + Str(a))
PrintN("B = " + Str(b))
PrintN("")
If a > b
PrintN("A is Greater than B")
ElseIf b > a
PrintN("B is Greater than A")
ElseIf a = b
PrintN("A is Equal to B")
Else
PrintN("The values for A and/or B are not Legal.")
EndIf
Repeat
Delay(1)
Until Inkey() <> ""