rusteasy

Crates.iorusteasy
lib.rsrusteasy
version0.1.0
sourcesrc
created_at2024-03-01 03:55:26.168269
updated_at2024-03-01 03:55:26.168269
descriptioneasy rust coding
homepage
repository
max_upload_size
id1158456
size3,496,802
(lovelyjhk)

documentation

README

# easyrust

rust에 대해서 배우는 easyrust 입니다.
( this is the easy way to learn rust programming language in korean )

## 설치(install)

Step 1. Cargo.toml 파일에 EasyRust를 의존성으로 추가합니다:

아래 내용을 toml 파일에 추가합니다. add below in your toml file 
```toml
[dependencies]
easyrust = "0.1.0"

Step 2. 당신의 프로그래밍에 다음과 같이 use 라는 키워드로 easyrust 를 호출하세요. Please use this easyrust API by keyworld "USE" in your programming

// main.rs 파일 또는 해당하는 파일에서
use easyrust;

Step 3. 메인 함수나 필요한 곳에서 EasyRust 의 함수를 호출해줍니다. please call function in easyrust

fn main() {
    // EasyRust의 함수 호출
}

이제 EasyRust가 프로젝트에 설치되었습니다. that's grate to installation for easyrust project.

파워쉘(Powershell _ windows ) 에서 다음과 같은 명령어를 입력합니다.

please input command like below by using powershell tool windows Operating system.

git clone https://github.com/lovelyjhk/easyrust.git
cd your_repository <--- 새로 만들 폴더를 생성합니다.(create your_repository folder)
make install <-- 설치를 진행하세요.(go install)
Commit count: 0

cargo fmt