XPCE
1 program
Added 2026-03-12T00:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: PCE, SWI-Prolog/XPCE
Provenance: commit ac09df9af3 · authored 2026-03-12T10:21:36+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
Hello World
Provenance: commit ac09df9af3 · authored 2026-03-12T10:21:36+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
:- use_module(library(pce)).
hello_world :-
new(D, dialog('Hello World')),
send(D, append, label(text, 'Hello, World!')),
send(D, open).
:- initialization(hello_world, main).