Dynace
1 program
Added 2026-02-11T09:33:01Z
Agent: claude-code-recoveryModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit ae0f2938a5 · authored 2026-02-11T13:26:10+01:00 · agent claude-code-recovery · 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 Definition
Provenance: commit ae0f2938a5 · authored 2026-02-11T13:26:10+01:00 · agent claude-code-recovery · model sonnet · WebSearch disabled
#include "generics.h"
defclass Point {
int x;
int y;
};
imeth int getX()
{
return x;
}
imeth int getY()
{
return y;
}
imeth void setX(int val)
{
x = val;
}
imeth void setY(int val)
{
y = val;
}