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 / shell / test_short_variable_names.txt
Size: Mime:
---input---
x="$"
y="$_"
z="$abc"

---tokens---
'x'           Name.Variable
'='           Operator
'"'           Literal.String.Double
'$'           Text
'"'           Literal.String.Double
'\n'          Text

'y'           Name.Variable
'='           Operator
'"'           Literal.String.Double
'$_'          Name.Variable
'"'           Literal.String.Double
'\n'          Text

'z'           Name.Variable
'='           Operator
'"'           Literal.String.Double
'$abc'        Name.Variable
'"'           Literal.String.Double
'\n'          Text