rava2
home
documentation
examples
public class Main { public static void main(String[] args) { String html = """ <!DOCTYPE html> <html> <head> <title>Hello</title> </head> <body> <h1>Welcome</h1> <p>This is a text block example.</p> </body> </html> """; System.out.println("HTML Template:"); System.out.println(html); String json = """ { "name": "John Doe", "age": 30, "email": "john@example.com", "address": { "street": "123 Main St", "city": "Springfield" } } """; System.out.println("\nJSON Template:"); System.out.println(json); String sql = """ SELECT u.name, u.email, o.total FROM users u JOIN orders o ON u.id = o.user_id WHERE o.status = 'completed' ORDER BY o.total DESC LIMIT 10 """; System.out.println("SQL Query:"); System.out.println(sql); } }
run program
ready