Initial commit for mini_grep

This commit is contained in:
Kirill Samoylenkov 2025-10-11 20:53:10 +05:00
parent 8e903e2e94
commit 49bd0744b8
2 changed files with 9 additions and 0 deletions

6
mini_grep/Cargo.toml Normal file
View file

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

3
mini_grep/src/main.rs Normal file
View file

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