Nigel Barink 1cd303824d
Some checks failed
My Actions / Explore (push) Has been cancelled
Setting up basic application structure
2024-11-04 21:41:33 +01:00

12 lines
125 B
Go

package main
import (
"testing"
)
func TestTruthy(t *testing.T) {
if true != true {
t.Fatalf("truthy not truthy")
}
}