dev/vala/hello/notify.vala

11 lines
252 B
Vala
Raw Normal View History

2012-09-30 19:46:05 +04:00
public class Demo : Object {
public string title { get; set; }
}
void main () {
var demo = new Demo ();
demo.notify.connect ((s, p) => stdout.printf ("Property %s changed\n", p.name));
demo.title = "hello";
demo.title = "world";
}