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 / gdscript / test_simple_function.txt
Size: Mime:
---input---
func abc(arg):
	print("Hello, World!")

---tokens---
'func'        Keyword
' '           Text.Whitespace
'abc'         Name
'('           Punctuation
'arg'         Name
')'           Punctuation
':'           Punctuation
'\n'          Text.Whitespace

'\t'          Text.Whitespace
'print'       Name.Builtin
'('           Punctuation
'"'           Literal.String.Double
'Hello, World!' Literal.String.Double
'"'           Literal.String.Double
')'           Punctuation
'\n'          Text.Whitespace