SyntaxFix
Write A Post
Hire A Developer
Questions
Way too late to this but the simplest way I've found is:
String foo = bar = baz = "hello" println(foo) println(bar) println(baz)
Output:
hello hello hello