variables
-
const or const var?
I have seen only "const" without "var" several times now - is that enough?
It does work! -
Declaring multiple const variables on single line causes crash
As the title says. const var a=0, b=1, c=2 == crash. No problem with var or reg though. Btw what's the difference between const a = 0 and const var a = 0?
Forum (forum.hise.audio)
I prefer
const
because it's less code :) -
@d-healey Ok - Thanks