In ArkScript, there are two main rules:
(a b c ...) is a function call, a is the function with b c ... being the arguments.(fun (arg1 arg2 ...) body), the definition of the argument block isn’t considered as a function call.To sum it up: everything is a function call, except the definition of the arguments block of a function.