remove noisy print

SVN=114939
This commit is contained in:
Rob Pike 2008-04-03 16:59:46 -07:00
parent b749038246
commit 8cdb71017a

View file

@ -27,7 +27,6 @@ type Vector struct {
// BUG: workaround for non-constant allocation.
// i must be a power of 10.
func Alloc(i int) *[]Element {
print "Alloc ", i, "\n";
switch i {
case 1:
return new([1]Element);