commit | bc2f5f1dce1687d0aff0d51ea1b56a5d52aa3891 | [log] [tgz] |
---|---|---|
author | Rob Pike <r@golang.org> | Mon Aug 11 22:07:49 2008 -0700 |
committer | Rob Pike <r@golang.org> | Mon Aug 11 22:07:49 2008 -0700 |
tree | 9d0faf1d96579f8c9fb0321586cab7c5149ccdf1 | |
parent | 7293dab5a9e4d0fb4b66fd76bab2572bbebc050d [diff] [blame] |
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
diff --git a/test/turing.go b/test/turing.go index c622bfb..462bb91 100644 --- a/test/turing.go +++ b/test/turing.go
@@ -24,7 +24,7 @@ case '-': a[p]--; case '.': - print string(a[p]); + print(string(a[p])); case '[': if a[p] == 0 { for nest := 1; nest > 0; pc++ {