RosettaCodeData/Task/Strip-block-comments/J/strip-block-comments-2.j

19 lines
279 B
Text
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
example=: 0 :0
/**
* Some comments
* longer comments here that we can parse.
*
* Rahoo
*/
function subroutine() {
a = /* inline comment */ b + c ;
}
/*/ <-- tricky comments */
/**
* Another comment.
*/
function something() {
}
)