anole
anole copied to clipboard
Support macro for meta-programming in macro
Maybe something like:
#
for (name) in (expr) (block_expr) ->
{
@&__it: expr.iterator();
while _it.has_next() {
name: __it.next();
block_expr
}
}
#