Hi,
here's an example I found slightly unexpected:
<hansl>
function scalar hey(void)
print "do we see this?"
return 1
end function
bundle b = null
if hey() == 1 # no printout from inside hey()
print "oho"
endif
</hansl>
The hey() function is executed alright because the if-clause evaluates
to True. But whatever happens inside the function isn't visible apparently.
Bug or feature?
thanks
sven
Show replies by date