Guest User

Untitled

a guest
Jun 13th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. // 1998
  2. if(a==b){
  3. doit();
  4. domore();}
  5.  
  6. // 2001
  7. if(a==b)
  8. { doit();
  9. domore();
  10. }
  11.  
  12. // 2002
  13. if (a==b)
  14. {
  15. doit();
  16. domore();
  17. }
  18.  
  19. // from 2004
  20. if ( a == b )
  21. {
  22. doit( );
  23.  
  24. domore( );
  25. }
Add Comment
Please, Sign In to add comment