GVala added.

This commit is contained in:
Kolan Sh 2012-10-12 20:25:54 +04:00
parent 40334d814c
commit 58e2f0122c
1 changed files with 7 additions and 1 deletions

View File

@ -10,11 +10,17 @@ class Sub : Base {
}
}
class SubSub : Sub {
public override void copy () {
stdout.printf ("SubSub copy() called\n");
}
}
class GVala : GLib.Object {
public static int main (string[] args) {
// var base = new Base();
// var sub = new Sub();
Base b = new Sub();
Base b = new SubSub();
b.copy();