Blueprint
1 program
Added 2026-03-12T08:53:44Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Blueprint markup language, GTK Blueprint
Provenance: commit 736b0fdfda · authored 2026-03-12T09:54:37+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 GTK Window
Provenance: commit 736b0fdfda · authored 2026-03-12T09:54:37+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
using Gtk 4.0;
ApplicationWindow {
title: "Hello World";
default-width: 300;
default-height: 200;
Box {
orientation: vertical;
spacing: 12;
margin-top: 24;
margin-bottom: 24;
margin-start: 24;
margin-end: 24;
Label {
label: "Hello, World!";
}
Button {
label: "Click me";
action-name: "app.quit";
}
}
}