Skip to content

Instantly share code, notes, and snippets.

@seemcat
Last active January 8, 2019 17:55
Show Gist options
  • Save seemcat/e0d9401b3cd37cf01eab4fa4193a8531 to your computer and use it in GitHub Desktop.
Save seemcat/e0d9401b3cd37cf01eab4fa4193a8531 to your computer and use it in GitHub Desktop.
Example of Type Error
package main
import (
"fmt"
)
func main() {
a := "hello"
b := 6
fmt.Println("a + b = ", a + b)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment