We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Particular reason for using fmt on variable assigment?
40 if newVar.Default != reflect.ValueOf(nil) { 41 fmt.Println("setting default:", newVar.Default.String()) 42 newVar.SetValue(newVar.Default) 43 } else { 44 fmt.Println("No default; setting zero value") 45 newVar.SetValue(reflect.Zero(newVar.Type)) 46 }
The text was updated successfully, but these errors were encountered:
Whoops, nope not at all. That was debug output that should've been removed before pushing. It's since been taken out of master. Sorry about that!
Sorry, something went wrong.
Thank you!
No branches or pull requests
Particular reason for using fmt on variable assigment?
The text was updated successfully, but these errors were encountered: