Compare commits

...

2 Commits

Author SHA1 Message Date
8beecb1fec reste du commit 2024-12-24 15:30:45 -05:00
1865bce3a5 Ajout du projet taquin 2024-12-24 15:29:45 -05:00
5 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,8 @@
[package]
name = "taquin"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View File

@ -0,0 +1,8 @@
mod models;
use crate::models::taquin::*;
fn main() {
println!("Hello, world!");
move_to();
}

View File

@ -0,0 +1 @@
pub mod taquin;

View File

@ -0,0 +1 @@
pub fn move_to() {}