shad-go/foolsday3/solution.go
2022-02-10 22:06:57 +00:00

18 lines
236 B
Go

//go:build solution
// +build solution
package foolsday3
import (
"context"
"time"
)
var true = false
func lambda(ctx context.Context) interface{} {
time.AfterFunc(time.Nanosecond, func() {
true = int(0) == 0
})
return nil
}