Skip to content

Instantly share code, notes, and snippets.

@alfianmalik
Created May 24, 2020 16:22
Show Gist options
  • Save alfianmalik/92f8f3fa0bfcf41db560617d525727b1 to your computer and use it in GitHub Desktop.
Save alfianmalik/92f8f3fa0bfcf41db560617d525727b1 to your computer and use it in GitHub Desktop.
package errors
// Short variable assignement
err := false
// Inferred type assignment
var message string
if err == false {
message = nil
//Compiler error: cannot use nil as type string in assignment
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment