Beware, this is an incompatible change!
All built-in functions have been updated to return undef.
}
# print "Cond stack: @cond\n";
} else {
- eval_if_ok("$f($a)");
+ my $res = eval_if_ok("$f($a)");
+ print $res if defined $res;
}
}
UCW::Temple::eval_if_ok("\$$v = \$temp");
}
UCW::Temple::parse_file($fn);
+ return;
}
sub load {
my $f = shift @_;
(!defined($f) || @_) and die "\@load requires only one argument";
require $f;
+ return;
}
1;