Changes in Java13
Both text blocks and switch expressions still are preview features!
Text Blocks
New way to use multiline strings. They start with 3 "
and a newline.
String jsonBlock = """
{
greeting: "Hello",
audience: "World"
}
"""
Both text blocks and switch expressions still are preview features!
New way to use multiline strings. They start with 3 "
and a newline.
String jsonBlock = """
{
greeting: "Hello",
audience: "World"
}
"""