DEV Community

Discussion on: Modernizing Java - A language feature wish list (Part 2)

Collapse
 
mbtts profile image
mbtts • Edited

Another one from ES6/Scala/PHP and maybe a few others - string template literals.

"Expected " + obj.getValue() + ", but actually " +  other.getValue() + "."

Versus:

"Expected ${obj.getValue()}, but actually ${other.getValue()}."