It seems that there is a strong movement for the convergence of mathematics and computer programming languages, this is notably evidenced by the influence of the lambda calculus on modern languages.
I\'m trying to prove the statement ~(a->~b) => a in a开发者_运维知识库 Hilbert style system.Unfortunately it seems like it is impossible to come up with a general algorithm to find a proof, but I\'m l
function waterPuzz(a,b){ if(b==0) return a ; return waterPuzz(b,a%b); } function pour(fromJug , toJug,d) {