Live data from Hacker News

LabStack: Multi-language programming playground

code.labstack.com

1–10 of 14 posts

Re: LabStack: Multi-language programming playground

#9
Was considering using this as comparative language teaching tool, and the thing that struck me most was the verbosity of Java compared to other languages:

  fun main(args: Array) {
    println("Hello from Kotlin!")
  }
vs.

  public class Main {
    public static void main(String[] args) {
      System.out.println("Hello from Java!");
    }
  }
Post reply on HN