Fix a missing return.

Yay, I've wanted this feature in qfcc for many years :).
This commit is contained in:
Bill Currie 2011-02-10 14:47:24 +09:00
parent adeef4a4eb
commit 5a7650e54a

View file

@ -35,6 +35,7 @@
{
print ("Hello world\n");
printf ("%i %p\n", self, &self.x);
return self;
}
@end