// Created on savesnippets.com ยท https://savesnippets.com/kgi461JO2TWCoV class Demo { static String html() { return """

Hello

"""; // The common indentation (12 spaces here) is stripped automatically. } static String sqlQuery(int userId) { return """ SELECT u.id, u.name, COUNT(o.id) AS order_count FROM users u LEFT JOIN orders o ON o.user_id = u.id WHERE u.id = %d GROUP BY u.id, u.name """.formatted(userId); } static String json(String name) { return """ { "name": "%s", "created_at": "2025-03-12T14:00:00Z" } """.formatted(name); } }