Newer
Older
# Bibliothèque Rust pour architecture avancée
bibliothèque de fonctions utilitaires pour la programmation RUST en Licence 3 Informatique : architecture avancée
## Installation
Ajoutez ceci dans votre `Cargo.toml` :
\`\`\`toml
[dependencies]
ma_biblio_rust = { git = "https://github.com/votre-username/ma_biblio_rust.git" }
\`\`\`
## Utilisation
\`\`\`rust
use ma_biblio_rust::saluer;
use ma_biblio_rust::math::additionner;
fn main() {
    println!("{}", saluer("Monde"));
    println!("2 + 3 = {}", additionner(2, 3));
}
\`\`\`
## Licence
MIT OR Apache-2.0