Hacker News new | ask | show | jobs
by c03 330 days ago
Kotlin has everything. A language isn't better just because it has more.

Its great for DSLs though.

1 comments

Java is pretty good for DSLs too.
Language.Builder().getOh().getYes().getJava().getIsSoNice().setFor(() -> { return "DSLs";});

No trailing lambdas, no infix operators, no @DslMarkers, no top level functions, and an infinite list of examples of Java verbosity making even the smallest thing look like an ancient greek epic. Java is utterly terrible for DSLs.

   Language {
       oh {
           yes {
              Java {
                  isSoNice
           }
       }
   }

You can contrive awfulness in any language.
The awfulness of one style of Java DSL is the awfulness of Lisp, that is

  building(of(S("expressions"),everything())
Not going to lie, my brain doesn't really comprehend lisp. So the joke (or point?) is way over my head.