Xcerpt
1 program
Added 2026-03-11T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit f924f0f2db · authored 2026-03-11T21:15:50+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
Query Persons Over 30
Provenance: commit f924f0f2db · authored 2026-03-11T21:15:50+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
%% Query persons whose age is above 30
%% Xcerpt rule-based query example
construct {
result {
person {
name { $name },
age { $age }
}
}
}
where {
some $doc in "persons.xml" : {
persons {
person {
name { $name },
age { $age }
}
}
},
$age > 30
}