shad-go/foolsday3/solution.go

18 lines
216 B
Go
Raw Normal View History

2021-03-31 19:15:03 +00:00
// +build solution
package foolsday3
import (
"context"
"time"
)
var true = false
func lambda(ctx context.Context) interface{} {
2021-03-31 20:05:43 +00:00
time.AfterFunc(time.Nanosecond, func() {
2021-03-31 19:15:03 +00:00
true = int(0) == 0
})
return nil
}