How to make a variable not be sharable outside a function?

Hi @LAAOUATNI_ANAS variables that are defined are by definition global, function parameters are scoped within its function, I think aslong as you dont set parameter variable it should be unreachable for anything outside of the function.

2 Likes