Guest User

Untitled

a guest
Oct 18th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. var=expression;
  2.  
  3. If[var==0,
  4. Print[Hello]];
  5.  
  6. If[var!=0,
  7. Print[Hey]];
  8.  
  9. If[var === 0, Print[Hello]];
  10. If[var =!= 0, Print[Hey]];
Add Comment
Please, Sign In to add comment