DEBSOURCES
Skip Quicknav
sources / golang-github-traefik-yaegi / 0.16.1-2 / _test / math2.go
123456789101112
package main const c uint64 = 2 func main() { if c&(1<<(uint64(1))) > 0 { println("yes") } } // Output: // yes