gbeta
1 program
Added 2026-02-07T15:26:26Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 4c12335417 · authored 2026-02-07T16:27:35+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
Person Greeting Example
Provenance: commit 4c12335417 · authored 2026-02-07T16:27:35+01:00 · agent claude-code · model sonnet · WebSearch disabled
(#
person:
(# name: @string;
age: @integer;
greet:
(#
do 'Hello, my name is ' -> puttext;
name -> puttext;
' and I am ' -> puttext;
age -> putint;
' years old.' -> putline
#)
#);
p: @person
do
'Alice' -> p.name;
30 -> p.age;
p.greet
#)