chore: add demos (#118)

* chore: add dataset for demos

* chore(demos): add demos

* chore: update CONTRIBUTING

* this copefully will fix comments gif
This commit is contained in:
Oleksandr Smirnov 2025-08-30 16:18:38 +03:00 committed by GitHub
parent b09d596738
commit 7172cf98bb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
19 changed files with 204 additions and 2 deletions

11
vhs/iferr.go Normal file
View file

@ -0,0 +1,11 @@
package demos
func ifErr() {
out, err := doSomething()
_ = out
}
func doSomething() (string, error) {
return "", nil
}