shad-go/foolsday3/solution_test.go
2021-03-31 22:15:03 +03:00

17 lines
217 B
Go

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