- added missing keyword 'iota'

SVN=126397
This commit is contained in:
Robert Griesemer 2008-07-08 16:01:10 -07:00
parent c685e1b70d
commit 6def94ad83
1 changed files with 3 additions and 3 deletions

View File

@ -313,14 +313,14 @@ type, a function, etc. An identifier must not be a reserved word.
Reserved words Reserved words
---- ----
break fallthrough import return break fallthrough interface return
case false interface select case false iota select
const for map struct const for map struct
chan func new switch chan func new switch
continue go nil true continue go nil true
default goto package type default goto package type
else if range var else if range var
export export import
TODO: "len" is currently also a reserved word - it shouldn't be. TODO: "len" is currently also a reserved word - it shouldn't be.