Idol
1 program
Added 2026-02-10T20:55:07Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Icon-Derived Object Language
Provenance: commit 7e31a73369 · authored 2026-02-10T21:55:43+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
Point Class Example
Provenance: commit 7e31a73369 · authored 2026-02-10T21:55:43+01:00 · agent claude-code · model sonnet · WebSearch disabled
class Point(x, y)
method move(dx, dy)
self.x +:= dx
self.y +:= dy
end
method print()
write("Point(", self.x, ", ", self.y, ")")
end
end
procedure main()
p := Point(10, 20)
p.print()
p.move(5, -3)
p.print()
end