Add gmachine

This commit is contained in:
2022-02-23 01:31:53 +01:00
parent 64f5d8346d
commit 0948cefe10
9 changed files with 246 additions and 0 deletions

15
gmachine/calc_test.go Normal file
View File

@@ -0,0 +1,15 @@
package gmachine
import "testing"
func TestCalc(t *testing.T) {
t.Parallel()
var wants uint64 = 1
got := Calc()
if wants != got {
t.Errorf("want %d, got %d", wants, got)
}
}