aah, i do get it now..
that is pretty good .. sorry to keep referrencing php, but that is the only thing i can test quickly and know well =)
PHP Code:
<?
function test()
{
$i=1;
if($i==1) return 1;
return 0;
}
printf(test());
?>
i didn't realize it would exit out of the code after a return. cool, thanks!