#How does @ work?
1 messages · Page 1 of 1 (latest)
All @name are compiler builtins that can accept arguments in ways that a normal function cannot. For @max this means any number of arguments >=2 is valid.
1 messages · Page 1 of 1 (latest)
When I do something like @max(a, b, c) what is happening internally? Is it doing a function call? Or is @ a macro? Documentation suggests that @max should only work with two inputs, but it works with 3 for me :/
All @name are compiler builtins that can accept arguments in ways that a normal function cannot. For @max this means any number of arguments >=2 is valid.