逻辑表达式

 

let true = \a.\b.a

let false = \a.\b.b

let not = \x.x false true

let and = \x.\y. x y false

let or = \x.\y. x true y

let xor = \x.\y.x (not y) y

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-09-08
  • 2021-07-19
  • 2021-09-05
  • 2022-01-14
  • 2022-01-16
猜你喜欢
  • 2021-06-11
  • 2022-12-23
  • 2021-07-11
  • 2021-06-23
  • 2021-12-21
  • 2021-10-16
  • 2021-11-04
相关资源
相似解决方案