```markdown # 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 ```rust // main.rs 파일 또는 해당하는 파일에서 use easyrust; ``` Step 3. 메인 함수나 필요한 곳에서 EasyRust 의 함수를 호출해줍니다. please call function in easyrust ```rust 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. ```bash git clone https://github.com/lovelyjhk/easyrust.git cd your_repository <--- 새로 만들 폴더를 생성합니다.(create your_repository folder) make install <-- 설치를 진행하세요.(go install) ```