Now I'm even more confused.

Tried this simple code: 
    
    
    import macros
    
    macro foo(body: untyped): untyped =
      echo treeRepr body
    
    foo:
      var x = 123
    
    
    Run

This won't print anything to stdout. I could swear it should print the tree 
representation of `var x = 123`.

Reply via email to