const-2.go 69 B

12345678
  1. package main
  2. const c = 3;
  3. func main() {
  4. if c != 3 { panic(0) }
  5. }