Hey #ABAP , is "Semi Constant" a thing? (And is there a better word for it? )

It's used like a constant, but well actually, its a variable.
Why? So I CAN change it in the Debugger, if I want to try something out.

Examples:

DATA lv_con_max_rows_select_eg_50 TYPE i VALUE 50.
DATA lv_con_do_2_times TYPE i VALUE 2.

Do you use something like this?

#CleanAbap ?

@joachim_rees
can you specify what you mean by const (which in C++ only means read-only)? https://stackoverflow.com/a/2444706
volatile vs. mutable in C++

I have a question about the difference between volatile and mutable. I noticed that both of the two means that it could be changed. What else? Are they the same thing? What's the difference? Where ...

Stack Overflow