add: type switch

This commit is contained in:
Inanc Gumus
2019-08-25 08:57:53 +03:00
parent 39aed37a88
commit 0f07e4814e
27 changed files with 355 additions and 130 deletions

View File

@@ -0,0 +1,16 @@
// For more tutorials: https://blog.learngoprogramming.com
//
// Copyright © 2018 Inanc Gumus
// Learn Go Programming Course
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
//
package main
import "fmt"
type money float64
func (m money) string() string {
return fmt.Sprintf("$%.2f", m)
}