Methods
Example:
def fac(x)
if x <= 1 then
return 1
end
return x * fac (x-1)
end
Something is ALWAYS RETURNED. Last statement is return value (or NIL if it's BS)
- Every method has a class
- Optional parans (puts "Hello World") - if there is space after function name, then assumes no parans there