remove obsolete ref modifier and callback keyword
[vala-lang.git] / tests / test-021.vala
blob0bb38e353986dfeeebce068c63cef0b13eada9a6
1 using GLib;
3 class Maman.Foo {
4 static int main (string[] args) {
5 stdout.printf ("String + operator: 1");
7 stdout.printf (" 2" + " 3");
9 string s = " 4";
10 s += " 5";
12 stdout.printf ("%s", s);
14 stdout.printf (" 6\n");
16 return 0;