statement.go 84 B

123456789
  1. package statement
  2. type Statement int
  3. const (
  4. ASSIGN Statement = iota
  5. INC
  6. DEC
  7. )