Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,959 questions

51,901 answers

573 users

How to use enum in Go

4 Answers

0 votes
package main

import "fmt"

type Base int

const (
    A Base = iota
    B
    C
    D
)

func main() {

    var base Base
    base = C

    if (base == C) {
      fmt.Println(base)
    }
}



/*
run:

2

*/

 



answered Mar 1, 2021 by avibootz
0 votes
package main
  
import "fmt"
  
type Base int
  
const (
    A Base = 1 << iota
    B
    C
    D
    E
)
  
func main() {
  
    var base Base
    
    base = A
    fmt.Println(base)
     
    base = B
    fmt.Println(base)
     
    base = C
    fmt.Println(base)
     
    base = D
    fmt.Println(base)
     
    base = E
    fmt.Println(base)
}
  
  
  
  
/*
run:
  
1
2
4
8
16
  
*/

 



answered Mar 1, 2021 by avibootz
edited Mar 1, 2021 by avibootz
0 votes
package main
  
import "fmt"
  
type Base int
  
const (
    A Base = iota * 3
    B
    C
    D
    E
)
  
func main() {
  
    var base Base
    
    base = A
    fmt.Println(base)
     
    base = B
    fmt.Println(base)
     
    base = C
    fmt.Println(base)
     
    base = D
    fmt.Println(base)
     
    base = E
    fmt.Println(base)
}
  
  
  
  
/*
run:
  
0
3
6
9
12
  
*/

 



answered Mar 1, 2021 by avibootz
0 votes
package main
 
import "fmt"
 
type Base float64
 
const (
    A = iota * 3
    B 
    C 
    D = iota * 1.35
    E
    F
)
 
func main() {
 
    var base Base
    
    base = A
    fmt.Println(base)
    
    base = B
    fmt.Println(base)
    
    base = C
    fmt.Println(base)
    
    base = D
    fmt.Println(base)
    
    base = E
    fmt.Println(base)
    
    base = F
    fmt.Println(base)
}
 
 
 
 
/*
run:
 
0
3
6
4.05
5.4
6.75
 
*/

 



answered Mar 1, 2021 by avibootz

Related questions

1 answer 68 views
68 views asked Jul 11, 2025 by avibootz
1 answer 58 views
1 answer 64 views
2 answers 81 views
2 answers 105 views
105 views asked May 6, 2025 by avibootz
1 answer 87 views
...