packages feed

rtk-0.11: test-grammars/sandbox.pg

grammar 'Sandbox';

Sandbox = doccomment ;

doccomment = '/**' ([^\*] | [\*] [^\/] | [\n])* '*/';
 
# Whitespace and comments (ignored)
Ignore: ws = [ \t\n\r]+ ;
Ignore: comment = '//' .* ;
Ignore: blockComment = '/*' ([^\*] | [\*] [^\/] | [\n])* '*/' ;