// Hello World in Lux // Demonstrates basic effect usage // // Expected output: Hello, World! fn greet(): Unit with {Console} = Console.print("Hello, World!") // Run the greeting with the Console effect let output = run greet() with {}