* chore: add dataset for demos * chore(demos): add demos * chore: update CONTRIBUTING * this copefully will fix comments gif
11 lines
125 B
Go
11 lines
125 B
Go
package demos
|
|
|
|
func ifErr() {
|
|
out, err := doSomething()
|
|
|
|
_ = out
|
|
}
|
|
|
|
func doSomething() (string, error) {
|
|
return "", nil
|
|
}
|