Initial commit

This commit is contained in:
Orhun Parmaksız 2021-09-25 02:50:33 +03:00
commit 30089f1c73
No known key found for this signature in database
GPG Key ID: F83424824B3E4B90
4 changed files with 22 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
# Compiled files and executables
/target/
# Backup files generated by rustfmt
**/*.rs.bk

7
Cargo.lock generated Normal file
View File

@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "kparams"
version = "0.1.0"

7
Cargo.toml Normal file
View File

@ -0,0 +1,7 @@
[package]
name = "kparams"
version = "0.1.0"
authors = ["Orhun Parmaksız <orhunparmaksiz@gmail.com>"]
edition = "2021"
[dependencies]

3
src/main.rs Normal file
View File

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