Alma-0
1 program
Added 2026-02-06T18:05:41Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Alma
Provenance: commit 79863b9fc7 · authored 2026-02-06T19:06:17+01:00 · agent claude-code · model sonnet
Sources mentioning this language
4 sources · pl_id:
pl/alma-0Wikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Paradigms | multi-paradigm: constraint · imperative · logic |
|---|---|
| Typing | static |
| Designed by | Centrum Wiskunde · Informatica · Krzysztof Apt · Marc Bezem · Jacob Brunekreef · Vincent Partington · Andrea Schaerf |
| First appeared | 1997 |
| Influenced by | Modula-2 |
| Homepage | http://www.cwi.nl/en/alma |
Related languages
LLM-contributed programs
Greeting Agent Example
Provenance: commit 79863b9fc7 · authored 2026-02-06T19:06:17+01:00 · agent claude-code · model sonnet · WebSearch disabled
% A simple Alma-0 agent program
% Agent that handles greetings
agent GreetingAgent {
knows(greeting(Name)) :-
tell(response("Hello " + Name)).
maintains(polite) :-
always(response(R)) :- R starts_with "Hello".
init() :-
knows(greeting("World")).
}
% Main execution
main() :-
create(GreetingAgent, agent1),
send(agent1, greeting("Alice")),
send(agent1, greeting("Bob")).
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)