vote up 1 vote down star
  case i of
         0..99  :   Function-call('bobo') ;
         100..209 : function-smell('Hobo');
         210..300 : function-yikes('argh');
       end;

But what if I wanted 210..300 to call both function yikes and function smell? Can't figure out how thanks.

flag

1 Answer

vote up 11 vote down check

Just add a begin end block:

case i of
  0..99    : function-call('bobo') ;
  100..209 : function-smell('Hobo');
  210..300 : begin
    function-yikes('argh');
    function-smell('Hobo');
  end;
end;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.