Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Pygments / tests / snippets / rust / test_break.txt
Size: Mime:
---input---
loop {
    break;
    break 'foo;
    break'foo;
    break_it;
}

---tokens---
'loop'        Keyword
' '           Text.Whitespace
'{'           Punctuation
'\n'          Text.Whitespace

'    '        Text.Whitespace
'break'       Keyword
';'           Punctuation
'\n'          Text.Whitespace

'    '        Text.Whitespace
'break'       Keyword
' '           Text.Whitespace
"'foo"        Name.Label
';'           Punctuation
'\n'          Text.Whitespace

'    '        Text.Whitespace
'break'       Keyword
"'foo"        Name.Label
';'           Punctuation
'\n'          Text.Whitespace

'    '        Text.Whitespace
'break_it'    Name
';'           Punctuation
'\n'          Text.Whitespace

'}'           Punctuation
'\n'          Text.Whitespace