Initial commit and Readme

This commit is contained in:
Fabian Schmidt 2024-11-18 08:50:29 +01:00
commit 960e9e2897
4 changed files with 13 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/target

6
Cargo.toml Normal file
View File

@ -0,0 +1,6 @@
[package]
name = "utils"
version = "0.1.0"
edition = "2021"
[dependencies]

3
Readme.md Normal file
View File

@ -0,0 +1,3 @@
# Utils
This crate contains various functions and structs to help with project euler, advent of code and similar challenges

3
src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}