spo/ass3/zbirnik/parsing/test.go
2026-01-17 16:54:20 +01:00

10 lines
134 B
Go

package main
import (
"fmt"
)
func main() {
test := 65 + ((true ? 1 : 0) << 1) + ((true ? 1 : 0) << 0)
fmt.Println(test)
}