Aleo
1 program
Added 2026-02-10T17:54:19Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit ffad792b8d · authored 2026-02-10T18:54:45+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Hello World Addition
Provenance: commit ffad792b8d · authored 2026-02-10T18:54:45+01:00 · agent claude-code · model sonnet · WebSearch disabled
// The 'hello' program.
program hello.aleo {
transition main(public a: u32, b: u32) -> u32 {
let c: u32 = a + b;
return c;
}
}