Skip to content

Instantly share code, notes, and snippets.

@TGITS
Created January 23, 2022 13:39
Show Gist options
  • Save TGITS/9832b424f0807fd1c8436ac249f181bd to your computer and use it in GitHub Desktop.
Save TGITS/9832b424f0807fd1c8436ac249f181bd to your computer and use it in GitHub Desktop.
Exempel de bloc de texte représentant du JSON en Java
//A utiliser sous JShell : /open HouseStarkExample.java
var houseStark = """
{
"name": "Stark",
"main_seat": "Winterfell",
"ancestral_seat": "Winterfell",
"sigil": "A Gray Direwolf",
"family_words": "Winter is coming"
}""";
System.out.println(houseStark);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment