initial commit

This commit is contained in:
2025-08-27 08:48:19 -04:00
commit 85bac6b12b
25 changed files with 570 additions and 0 deletions

11
iface/01-iface.go Normal file
View File

@@ -0,0 +1,11 @@
package main
type Strummer interface {
Strum()
}
type Bocchi struct {
Guitar string
}
var _ Strummer = (*Bocchi)(nil)