param is address then pass @a to param of procedure inpt(), after valf funciton will change value of aProcedure inpt(*vol.f,name.s)
Print("Value "+name$+" =")
tmp.s=Input()
*vol=ValF(tmp)
PrintN("")
EndProcedure
DefType.f a
If OpenConsole()
Inpt(@a,"a")
a=a+1
Print(Str(a))
Input()
CloseConsole()
EndIf
but when print(str(a)) then a alway =0
where am i wrong?
