First page Back Continue Last page Overview Graphics
Another typical Q & D example
-- calling the return continuation
somePicoFunction(t)::
{
if(is_void(t), return(0), false);
if(is_text(t), return(1), false);
if(is_number(t), return(void),false);
2
}