chore(demos): add demos

This commit is contained in:
Oleksandr Smirnov 2025-08-30 14:49:54 +03:00
parent 11d61810ce
commit 5a0f978586
No known key found for this signature in database
17 changed files with 188 additions and 0 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
}