clarkgrubb / hyperpolyglot

hyperpolyglot.org
Other
479 stars 96 forks source link

inconsistent capitalization of hello.scala filename #77

Open nathanallen opened 7 years ago

nathanallen commented 7 years ago

The example filename is inconsistently capitalized as Hello.scala and hello.scala in two different examples:

See here

$ echo 'println("hello")' > Hello.scala
$ scala hello.scala

and here

$ cat hello.scala
object Hello {
  def main(args: Array[String]) {
    println("Hello, World!")
  }
}

$ scalac Hello.scala
$ scala Hello