However in the CK Wiki there are two different examples of a basic function:
int Function AddTwo(int a, int B) global return a + bendFunctionand
Function IncrementValue(int howMuch = 1) myValue += howMuchendFunctionA few questions based on these examples.
1. Why has the first function been defined as holding an integer, when the second one hasn't (yet still contains only integers)?
2. Why isn't the second function defined as a global function?
3. Is there an example of a native function?
Cheers guys

