SCHOONSHIP
1 program
Added 2026-02-16T16:14:51Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit b8662df8fb · authored 2026-02-16T17:15:26+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
Symbolic Expansion Example
Provenance: commit b8662df8fb · authored 2026-02-16T17:15:26+01:00 · agent claude-code · model sonnet · WebSearch disabled
* Simple SCHOONSHIP program to compute (a+b)^2
* SCHOONSHIP uses symbolic algebra
SYMBOL A,B,C;
LET C = (A+B)**2;
EXPAND C;
PRINT C;
END;