Document how can functions be written in one line
In bash, the following line is a valid function definition:
square(){ local x=$1; echo $(( x * x )); }
Can we do the same in Ion ?
I guess the answer is no, but it would be nice to mention it in the manual (functions.md).
Edited by ngirard