Reply To: local function?

Home Forums General Programming local function? Reply To: local function?

#83431
Possemo
Participant
    • Topics: 14
    • Replies: 638
    • Total: 652
    • ★★★

    I never used local functions so I cannot help you on that. But I can explain you what “local” means on variables: The var will only be available for the actual method. All other methods won’t see this var. If you don’t declare the var as local it will be automatically a global variable. This is not to be confounded with the Ctrlr global vars. Unfortunately they share the same name but this is something completely different.

    Ctrlr