Advertisement
Guest User

Untitled

a guest
Dec 19th, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. if(!is_null(variable) && is_integer(variable))
  2. {
  3. if(variable == 0)
  4. do_zero();
  5. elseif(variable == 1)
  6. do_one();
  7. elseif(variable == 2)
  8. do_two();
  9. else
  10. throw_error();
  11. }
  12.  
  13. if(!is_null(variable) && is_integer(variable))
  14. {
  15. if(variable == 0)
  16. do_zero();
  17. if(variable == 1)
  18. do_one();
  19. else
  20. do_two();
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement