This repository has been archived on 2024-06-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
coffee.pygments/tests/snippets/vbscript/test_floats.txt
Georg Brandl b40b0cca06 Rename "tests/lexers" to "tests/snippets" and update the contribution
docs to point to both snippets and examplefiles.
2021-01-20 10:57:30 +01:00

34 lines
592 B
Text

---input---
1.
1.e1
.1
1.2
1.2e3
1.2e+3
1.2e-3
1e2
---tokens---
'1.' Literal.Number.Float
'\n' Text.Whitespace
'1.e1' Literal.Number.Float
'\n' Text.Whitespace
'.1' Literal.Number.Float
'\n' Text.Whitespace
'1.2' Literal.Number.Float
'\n' Text.Whitespace
'1.2e3' Literal.Number.Float
'\n' Text.Whitespace
'1.2e+3' Literal.Number.Float
'\n' Text.Whitespace
'1.2e-3' Literal.Number.Float
'\n' Text.Whitespace
'1e2' Literal.Number.Float
'\n' Text.Whitespace