You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In your function body, you can refer to its arguments by using the dollar sign $ followed by a integer. For example $0
In the function definition you can't specify the arguments. You can pass different arguments to the same function and refer to them by using the dollar sign $
To return a value, use the give keyword
Remember that values are passed by copy (are they?)