diff options
author | Maxime Kjaer <maxime.kjaer@gmail.com> | 2021-03-01 11:39:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-01 11:39:20 +0100 |
commit | 37113b095ee9a445187a8478589010347b7a9687 (patch) | |
tree | 29538f8314345a1a4bcb62406dd58b336107f0a2 /tests/examplefiles/scala/operators.scala | |
parent | c1a0d82acbe6fa026a1f6843fee00cc1df626549 (diff) | |
download | pygments-git-37113b095ee9a445187a8478589010347b7a9687.tar.gz |
Rewrite Scala lexer for Scala 3 (#1694)
Diffstat (limited to 'tests/examplefiles/scala/operators.scala')
-rw-r--r-- | tests/examplefiles/scala/operators.scala | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/examplefiles/scala/operators.scala b/tests/examplefiles/scala/operators.scala new file mode 100644 index 00000000..632ecfc4 --- /dev/null +++ b/tests/examplefiles/scala/operators.scala @@ -0,0 +1,7 @@ +1 :: 2 :: Nil +a ++ b +a :+ b +a +: b +a :++ b +a ++: b +a + b
\ No newline at end of file |