Init gitignore,workflows

This commit is contained in:
weloe
2023-04-30 00:25:59 +08:00
commit 9be7ea8ceb
6 changed files with 280 additions and 0 deletions

14
first_test.go Normal file
View File

@@ -0,0 +1,14 @@
package token_go
import "testing"
func TestFirst(t *testing.T) {
First()
}
func BenchmarkFirst(b *testing.B) {
b.ResetTimer()
for i := 0; i < b.N; i++ {
First()
}
}