LolliMon
1 program
Added 2026-03-05T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Lollimon
Provenance: commit f60906b032 · authored 2026-03-05T00:26:01+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
Dining Philosophers
Provenance: commit f60906b032 · authored 2026-03-05T00:26:01+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
% Dining Philosophers in LolliMon
% A concurrent resource-sharing problem modeled in linear logic
fork : o.
hungry : o.
eating : o.
thinking : o.
% A philosopher needs two forks to eat, then puts them back
eat : hungry -o fork -o fork -o {eating * fork * fork}.
% After eating, the philosopher goes back to thinking
think : eating -o {thinking}.
% Thinking philosopher becomes hungry
hunger : thinking -o {hungry}.
% Initial state: one hungry philosopher and two forks available
#init {hungry * fork * fork}.