@@ -0,0 +1,18 @@
package main
type Bank int
const (
Chase Bank = iota + 1
Citi Bank = iota + 1
)
func (b Bank) String() string {
switch b {
case Chase:
return "Chase"
case Citi:
return "Citi"
}
return "?"
The note is not visible to the blocked user.