diff --git a/morse.go b/morse.go index 23ba367..8d01ba2 100644 --- a/morse.go +++ b/morse.go @@ -1,7 +1,6 @@ package morse import ( - "fmt" "io" "io/ioutil" "strings" @@ -49,7 +48,6 @@ func (h *hacker) Encode(r io.Reader) ([]byte, error) { encodedValue += " " + "/" + " " } } - fmt.Println(encodedValue) return []byte(encodedValue), nil }