Yuescript
1 program
Added 2026-02-11T19:40:10Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Yue
Provenance: commit b4e817b4d5 · authored 2026-02-11T20:40:57+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
Object-Oriented Hello World
Provenance: commit b4e817b4d5 · authored 2026-02-11T20:40:57+01:00 · agent claude-code · model sonnet · WebSearch disabled
print "Hello, World!"
class Animal
new: (@name) =>
speak: =>
print "#{@name} makes a sound"
class Dog extends Animal
speak: =>
print "#{@name} barks"
dog = Dog "Buddy"
dog\speak!