Impl uccu

This commit is contained in:
Bel LaPointe
2020-07-13 14:55:20 -06:00
parent 4006975a21
commit f32fb5aad1
2 changed files with 35 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ type Bank int
const (
Chase Bank = iota + 1
Citi Bank = iota + 1
UCCU Bank = iota + 1
)
func (b Bank) String() string {
@@ -13,6 +14,8 @@ func (b Bank) String() string {
return "Chase"
case Citi:
return "Citi"
case UCCU:
return "UCCU"
}
return "?"
}