gopher.nvim/vhs/iferr.go
Oleksandr Smirnov 7172cf98bb
chore: add demos (#118)
* chore: add dataset for demos

* chore(demos): add demos

* chore: update CONTRIBUTING

* this copefully will fix comments gif
2025-08-30 16:18:38 +03:00

11 lines
125 B
Go

package demos
func ifErr() {
out, err := doSomething()
_ = out
}
func doSomething() (string, error) {
return "", nil
}