use anyhow::Result; /// Main entry point for the Prometeu Compiler binary. /// It delegates execution to the library's `run` function. fn main() -> Result<()> { prometeu_compiler::run() }