Code : Tout sélectionner
f():={
local y, expr1;
assume(y,expression);
expr1:=(y and true);
print(y and true); // y Why?
print(expr1); // y Why?
return expr1; // y Why?
}:;
assume(y,expression); y and true; => y and true
Modérateur : xcasadmin
Code : Tout sélectionner
f():={
local y, expr1;
assume(y,expression);
expr1:=(y and true);
print(y and true); // y Why?
print(expr1); // y Why?
return expr1; // y Why?
}:;