fix bug depot:

1) fix print statements, panic statements (parentheses required)
	2) len is now allowed as a var name (bug053)

R=gri
OCL=14106
CL=14106
This commit is contained in:
Rob Pike 2008-08-11 22:07:49 -07:00
parent 7293dab5a9
commit bc2f5f1dce
63 changed files with 310 additions and 314 deletions

View file

@ -63,7 +63,7 @@ Init(i int) *Integer
func (this *Integer)
Print()
{
print this.val;
print(this.val);
}
func
@ -78,5 +78,5 @@ main()
}
list.Print();
print "\n";
print("\n");
}