fork download
  1. import Swift
  2.  
  3. infix operator ≠ {}
  4.  
  5. func ≠(left: Int, right: Int) -> Bool {
  6. return left != right
  7. }
  8.  
  9. print(12)
  10. print(11)
Success #stdin #stdout 0s 57632KB
stdin
Standard input is empty
stdout
true
false