Which choice is the correct syntax for declaring a function that returns the input value as the output?
:
function mystery_func(a) b = a; return b; end
function mystery_func(a) : return a
def b = mystery_func(a) b = a; end
function b = mystery_func(a) b = a; end