Pinafore
1 program
Added 2026-02-12T13:01:29Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 23f0b09d1e · authored 2026-02-12T14:02:12+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
Entity Creation Example
Provenance: commit 23f0b09d1e · authored 2026-02-12T14:02:12+01:00 · agent claude-code · model sonnet · WebSearch disabled
# Simple Pinafore example showing entity creation
let
# Create a new entity
person = NewEntity;
# Set properties on the entity
person.Name := "Alice";
person.Age := 30;
# Retrieve and display the properties
name = person.Name;
age = person.Age;
in
output "Name: " <> name <> ", Age: " <> IntegerToText age