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 / c / test_label.txt
Size: Mime:
---input---
int main()
{
foo:
  goto foo;
}

---tokens---
'int'         Keyword.Type
' '           Text.Whitespace
'main'        Name.Function
'('           Punctuation
')'           Punctuation
'\n'          Text.Whitespace

'{'           Punctuation
'\n'          Text.Whitespace

'foo'         Name.Label
':'           Punctuation
'\n'          Text.Whitespace

'  '          Text.Whitespace
'goto'        Keyword
' '           Text.Whitespace
'foo'         Name
';'           Punctuation
'\n'          Text.Whitespace

'}'           Punctuation
'\n'          Text.Whitespace