' simple calculation 2
' legend :
' dim = pim, dword = pro
' printy = print
' print = p?
' 

pim a,b,c,d as pro 
a= 20 : b=30 : c=50 : d=a*b 
printy a
p? d
string s = "Hello Batman " + a ' 20
p? s
string st = "Hello Spiderman " + d ' 600
p? st

pim k as float
k=2345.67 '2345.6699
p? k