DesignScript
1 program
Added 2026-02-28T14:21:39Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: enabled
Evidence
Report issue
View issues
Aliases: Design Script
Provenance: commit 58099d0017 · authored 2026-02-28T15:22:12+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
Sum of integers using imperative block
Provenance: commit 58099d0017 · authored 2026-02-28T15:22:12+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch enabled
def sum(x)
{
// define an imperative block inside a function
return = [Imperative](x)
{
s = 0;
for (i in 1..x)
{
s = s + i;
}
return = s;
}
}