Forum Moderators: coopster
function f1() {
#code here that does something
if(#something) {
return 1;
} else {
return 0;
}
} #end f1
#
function f2() {
#code that does something
if(f1()) { return 'something'; }
#otherwise proceed with rest of function
}