Setup initial project structure #1

Merged
florian_briand merged 3 commits from feature-setup-initial-project-structure into main 2024-07-07 14:19:45 +02:00
3 changed files with 9 additions and 0 deletions
Showing only changes of commit 820d76d0f5 - Show all commits

View File

6
clego/Cargo.toml Normal file
View File

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

3
clego/src/main.rs Normal file
View File

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