您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516171819202122232425262728
  1. package revision
  2. // token represents a entity extracted from string parsing
  3. type token int
  4. const (
  5. eof token = iota
  6. aslash
  7. asterisk
  8. at
  9. caret
  10. cbrace
  11. colon
  12. control
  13. dot
  14. emark
  15. minus
  16. number
  17. obrace
  18. obracket
  19. qmark
  20. slash
  21. space
  22. tilde
  23. tokenError
  24. word
  25. )