I am trying to parse through a simple go program , which contains the expression “i:=2+3.4” using its AST tree, now when I try to parse through the Right-Hand-Side of my expression, I get elements of type “ast.Expr” which turns out to be “2+3.4” in my case, when I try to print this element it returns an address value
&{0x2106c2760 102 + 0x2106c2780}
Is there any means I can get the string or part of the expression “2+3.4” from my AST tree instead of this address value?