Reformating code (w/ gofmt)

This commit is contained in:
2026-06-16 21:43:36 +02:00
parent 87402cbc2d
commit 1e89bffb7c
+4 -4
View File
@@ -1,11 +1,11 @@
package noid
type Counter struct {
top int
value int
top int
value int
}
func NewCounter(top, value int) *Counter {
c := Counter{top: top, value: value}
return &c
c := Counter{top: top, value: value}
return &c
}