return
..Root.BlockCallable.return
BlockCallable
.BlockCallable
and returns the specified value to its caller.Parameters: any
Return value:
Object
NativeCallable
, Callable
auto fun.=({
log("a");
log("b");
return("c");
log("d");
});
log(fun());