summaryrefslogtreecommitdiff
path: root/tests/lexers/ragel-cpp/example2.txt
blob: 92549d66dfc2d6c52b04fca591d988ebcc7ee6f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---input---
	%% write init;
	/* Read in a block. */

---tokens---
'\t'          Text
'%%'          Punctuation
' '           Text.Whitespace
'write'       Keyword
' '           Text.Whitespace
'init'        Name.Variable
';'           Punctuation
'\n'          Text

'\t'          Text
'/* Read in a block. */' Comment.Multiline
'\n'          Text