On Sunday, June 21, 2015 at 1:31:22 AM UTC-4, Jiyin Yiyong wrote: > > As described in http://blog.leahhanson.us/julia-introspects.html Julia > parses code to AST. > But is there function provided to generate code back? >
If you just want a parseable string from an AST, i.e. the "inverse" of the ast=parse(string) function, you can just use string(ast).
