hyperpolyglot icon indicating copy to clipboard operation
hyperpolyglot copied to clipboard

inconsistent capitalization of hello.scala filename

Open nathanallen opened this issue 9 years ago • 0 comments

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

nathanallen avatar Jan 16 '17 22:01 nathanallen