Single line comments are added to an arbitrary tree as follows:
tree withComment("comments here", ...)
For example,
LIT(2) withComment("comments are useful",
"only if they provide more info than the code")
print as
// comments are useful
// only if they provide more info than the code
2