Julia Notes Day1 -- functions and operators
Functions
∑(n) = sum(1:n)
∑(3) # Output: 6
∑(100) # Output: 5050
Unicode variable and function names ∑ are allowed.
Julia functions can be defined using compact "assignment form" syntax.
The value returned by a function is the value of the last ex...
blog.iread.fun3 min read