Initial Commit

This commit is contained in:
Aliberk Sandıkçı 2024-01-01 00:23:29 +03:00
commit dbd66207a1
Signed by: asandikci
GPG Key ID: 25C67A03B5666BC1
5 changed files with 36 additions and 0 deletions

14
.gitignore vendored Normal file
View File

@ -0,0 +1,14 @@
# Generated by Cargo
# will have compiled files and executables
debug/
target/
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock
# These are backup files generated by rustfmt
**/*.rs.bk
# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb

10
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,10 @@
{
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer",
"editor.tabSize": 2
},
"rust-analyzer.rustfmt.extraArgs": [
"--config",
"tab_spaces=2"
],
}

9
README.md Normal file
View File

@ -0,0 +1,9 @@
# Rust Learning - Playground
### Resources:
- [ ] (WIP) Eydi Gözeneli hocamızın [videoları](https://youtube.com/watch?v=Cr1KmCExxmM&list=PLgvWD2scL860_6ppZQS6i86vQuX_5wV2-&index=2)
- [ ] (WIP) Emin Fedar hocamızın [ders slaytları](https://github.com/eminfedar/rust-tr-ders-slaytlari/)
- [ ] (WIP) Rust Lang [Dökümantasyonu](https://doc.rust-lang.org/book/title-page.html)
- [Interaktif Versiyon](https://rust-book.cs.brown.edu/)u kullanmanız önerilir
- [ ] (TODO) Google [Comprehensive Rust](https://google.github.io/comprehensive-rust/)
- [ ] (TODO) [RustLing Örnekleri](https://rustlings.cool/)

BIN
basics/hello_world Executable file

Binary file not shown.

3
basics/hello_world.rs Normal file
View File

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