summaryrefslogtreecommitdiff
path: root/tests/examplefiles/Errors.scala
blob: 67198c05d221c1614f1d05f5a495878a501c5a2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* This file /* which is totally legal scala */ will not be highlighted
   correcty by pygments */

object ⌘ {
  val `interface` = """
A
"Multiline"
String
"""

  val foo_+ = "foo plus"
  val foo_⌬⌬ = "double benzene"

  def main(argv: Array[String]) {
    println(⌘.interface + " " + foo_+ + " " + foo_⌬⌬ )
  }
}