-
Notifications
You must be signed in to change notification settings - Fork 0
Functions Blocks
SittingFox edited this page Feb 25, 2015
·
2 revisions
With these blocks, you can create functions and use them.

function do_something {
}

function do_something {
return variable;
}


function do_something {
if (isTrue) {
return 1;
}
return 0;
}
do_something()
do_something()