Advertisement
Guest User

Untitled

a guest
Aug 25th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. macro_rules! sdebug {
  2. ($self:expr, $fmt:expr $(,$arg:expr)*) => (
  3. println!(concat!("[{}] ({}) ", $fmt), $self+1, $self+2, $($arg)*);
  4. );
  5. }
  6.  
  7. fn main() {
  8. sdebug!(1, "Sending PoolJoin request: facilitator={}", 22);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement