Functions with no parameters tested and passed

git-svn-id: http://picoc.googlecode.com/svn/trunk@184 21eae674-98b7-11dd-bd71-f92a316d2d60
This commit is contained in:
zik.saleeba 2009-03-10 02:04:19 +00:00
parent b8aedfe050
commit bee7e23212
3 changed files with 7 additions and 1 deletions

1
TODO
View file

@ -1,7 +1,6 @@
TODO
Bugs:
* defining functions with no parameters (in interactive mode?)
* int fact(int i) {
if (i < 2) {
return i;

View file

@ -13,3 +13,9 @@ void vfunc(int a)
vfunc(1234);
void qfunc()
{
printf("qfunc()\n");
}
qfunc();

View file

@ -1,3 +1,4 @@
9
16
a=1234
qfunc()