Skip to content

Instantly share code, notes, and snippets.

@gyselph
Created January 15, 2021 13:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gyselph/cebd2f0d2eb2f5bd258b6c640c9c40a7 to your computer and use it in GitHub Desktop.
Save gyselph/cebd2f0d2eb2f5bd258b6c640c9c40a7 to your computer and use it in GitHub Desktop.
Java 7 to 15: multiline string
public class Main {
public static void main(String [] args) {
var s = """
{
"recipe": "watermelon smoothie",
"duration": "10 mins",
"items": ["watermelon", "lemon", "parsley"]
}""";
System.out.println(s);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment