1 个不稳定发布
0.1.0 | 2024年3月1日 |
---|
#23 在 #below
1MB
包含 (DOS可执行文件, 175KB) target/debug/rusteasy.exe, (DOS可执行文件, 175KB) target/debug/deps/rusteasy.exe
# 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"
步骤2. 在您的编程中用 "use" 这个关键字调用 easyrust。请使用此 easyrust API 的 "USE" 关键字
// main.rs 파일 또는 해당하는 파일에서
use easyrust;
步骤3. 在主函数或需要的地方调用 EasyRust 的函数。请调用 easyrust 的函数
fn main() {
// EasyRust의 함수 호출
}
现在 EasyRust 已安装到项目中。这对于 easyrust 项目来说是个好消息。
在 Windows 操作系统的 PowerShell 中输入以下命令。
请使用 PowerShell 工具在 Windows 操作系统中输入以下命令。
git clone https://github.com/lovelyjhk/easyrust.git
cd your_repository <--- 새로 만들 폴더를 생성합니다.(create your_repository folder)
make install <-- 설치를 진행하세요.(go install)