Webseite der LUG Frankfurt mit Hugo
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
using Gtk; |
|
|
|
int main (string[] args) { |
|
|
|
init (ref args); |
|
var w = new Window (); |
|
|
|
foreach (ParamSpec p in w.get_class().list_properties()) |
|
stdout.printf ("\"%s\": %s\n", p.name, p.get_blurb()); |
|
|
|
return 0; |
|
}
|
|
|