One of the reasons is that it doesn't make much sense the way it is right now:
Code: Select all
#Global = "Global Constant"
Procedure Test()
#Local = "Local Constant"
EndProcedure
Debug "Global: " + #Global ; Ok
Debug "Global: " + #Local ; Doesn't make sense!
Code: Select all
Procedure CalcThis()
#ITERATIONS = 10
#MAX_VALUE = 999
; [...]
EndProcedure
Procedure CalcThat()
#ITERATIONS = 10000 ; Doesn't work :(
#MAX_VALUE = 1.0
; [...]
EndProcedure
