Hi Treeman & IanM. I've also seen programmers using # in their coding with regards to declaring variables. Is this a recommended practice?
As per this code; I find a few things that I'm still confused with...
#Constant lolpi 3.14159
MyVariable as Float = 1.01
MyVariable2 as Double Float = 1.01
MyVariable3 = 1.01
MyVariable4# = 1.01
MyPiVariable as Float = lolpi
MyPiVariable2 as Double Float = lolpi
MyPiVariable3 = lolpi
MyPiVariable4# = lolpi
Print MyVariable
Print MyVariable2
Print MyVariable3
Print MyVariable4#
Print " "
Print MyPiVariable
Print MyPiVariable2
Print MyPiVariable3
Print MyPiVariable4#
Wait Key