1
Fork 0
mirror of https://github.com/RGBCube/GDUS synced 2025-07-29 05:57:45 +00:00

Init Rust project

This commit is contained in:
RGBCube 2023-11-09 15:59:56 +03:00
parent b9eef49ac1
commit 13081a5fdc
No known key found for this signature in database
3 changed files with 14 additions and 0 deletions

5
.gitignore vendored
View file

@ -1,3 +1,8 @@
*
!src/
!.gitignore
!Cargo.toml
!*.rs

6
Cargo.toml Normal file
View file

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

3
src/main.rs Normal file
View file

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