We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Certains d'entre vous ont du mal à comprendre comment est construit un set:
Un set peut soit être:
Set.empty()
Set.cons(first, rest)
Ainsi vous pouvez écrire: Set.cons(Variable(named:"first"), Variable(named:"rest"))
Set.cons(Variable(named:"first"), Variable(named:"rest"))
Maintenant c'est à vous d'écrire les axiomes !
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Certains d'entre vous ont du mal à comprendre comment est construit un set:
Un set peut soit être:
Set.empty()
(set vide)Set.cons(first, rest)
, où first est un élément et rest est un set.Ainsi vous pouvez écrire:
Set.cons(Variable(named:"first"), Variable(named:"rest"))
Maintenant c'est à vous d'écrire les axiomes !
The text was updated successfully, but these errors were encountered: