prog.vala 216 B

123456789
  1. int main() {
  2. var test1 = new Test ();
  3. var test2 = new Subdir.Test ();
  4. var test3 = new Subdir2.Test ();
  5. var test4 = new Subdir.Subdir2.Test ();
  6. stdout.printf("Vala is working.\n");
  7. return 0;
  8. }