Ajout du projet taquin

This commit is contained in:
thatscringebro 2024-12-24 15:29:45 -05:00
parent 462ae1ec82
commit 1865bce3a5
4 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() {}