gitlab.com/ethan.reesor/vscode-notebooks/yaegi@v0.0.0-20220417214422-5c573557938e/_test/comp2.go (about)

     1  package main
     2  
     3  type delta int32
     4  
     5  func main() {
     6  	a := delta(-1)
     7  
     8  	println(a != -1)
     9  	println(a == -1)
    10  }
    11  
    12  // Output:
    13  // false
    14  // true