Guest User

Untitled

a guest
Jun 21st, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. macro_rules! hello {
  2. ($hi:expr) => {
  3. ($hi) == true
  4. };
  5. }
  6.  
  7. fn main() {
  8. let a = 1.0;
  9. let b = 2.0;
  10.  
  11. assert!(a < b, "Hello World!");
  12. hello!(a < b);
  13. }
Add Comment
Please, Sign In to add comment