20 lines
334 B
Raku
20 lines
334 B
Raku
sample().split(/ '/*' .+? '*/' /).print;
|
|
|
|
sub sample {
|
|
' /**
|
|
* Some comments
|
|
* longer comments here that we can parse.
|
|
*
|
|
* Rahoo
|
|
*/
|
|
function subroutine() {
|
|
a = /* inline comment */ b + c ;
|
|
}
|
|
/*/ <-- tricky comments */
|
|
|
|
/**
|
|
* Another comment.
|
|
*/
|
|
function something() {
|
|
}
|
|
'}
|