mirror of
https://github.com/traefik/yaegi.git
synced 2026-06-01 18:37:56 +00:00
15 lines
130 B
Go
15 lines
130 B
Go
package main
|
|
|
|
type delta int32
|
|
|
|
func main() {
|
|
a := delta(-1)
|
|
|
|
println(a != -1)
|
|
println(a == -1)
|
|
}
|
|
|
|
// Output:
|
|
// false
|
|
// true
|