Rust comment parser
Opened this issue · 2 comments
amilner42 commented
Rust comment parser
amilner42 commented
Actually not entirely "free", because Rust permits nested multi-line comments unlike our other langauges.
This would require a slightly different parser (ours will not allow:)
/*
this is all one comment
/* nester */
*/
amilner42 commented
Swift (the new apple lang) follows this format, so we'll get more than one lang if we support nested comments.