Yron
1 program
Added 2026-03-17T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: enabled
Evidence
Report issue
View issues
Aliases: yron-lang
Provenance: commit 56b04f09b5 · authored 2026-03-17T03:10:19+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Struct and Hello World
Provenance: commit 56b04f09b5 · authored 2026-03-17T03:10:19+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch enabled
struct Human def
pub:
var name:str;
var age:i32;
func new(self:Human, name:str, age:i32):void def
self::name = name;
self::age = age;
end
end
func main():i32 def
println("Hello world");
var human:Human = Human::new("Bob", 18);
end