blueprint-compiler/tests/formatting/correct1.blp
2023-09-16 14:01:18 -05:00

18 lines
232 B
Text

using Gtk 4.0;
template $MyTemplate: Label {
/**
* A list of strings.
*/
StringList {
// comment
strings [
'Hello',
C_('Greeting', 'World'),
]
}
object: Button {
label: 'Click me';
};
}