일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Ethereum
- rust
- 전문가를 위한 파이썬
- Algorithm
- 백준
- 알고리즘
- 플랫폼
- Kubernetes
- Refactoring
- Container
- fluent python
- 블록체인
- docker
- BlockChain
- Fast API
- function
- 코어 이더리움 프로그래밍
- guru
- IMAGE
- BAEKJOON
- RabbitMQ
- AWS
- Python
- dockerfile
- Network
- 러스트
- 파이썬
- 동시성
- 이더리움
- Thread
Archives
- Today
- Total
글쓰기 | 방명록 | 관리 |
목록Module (1)
Victoree's Blog
[7] 모듈과 파일시스템
모듈 mod와 파일시스템 $ cargo new communicator --lib $ cd communicator이는 src/lib.rs를 생성한다. mod client { fn connect() { } } mod network { fn connect() { } mod server { fn connect() { } } } --------------------------- communicator ├── client └── network └── server이를 두 파일로 쪼갠다면 lib.rs 파일에 mod client; 이라고 선언하고 client.rs라는 파일을 만들어 그곳에 모듈을 정의하면 된다. 이처럼 작성했을 때 러스트는 lib.rs에서 client 모듈을 선언하고 있지만 코드블록을 세미콜론으로 대체함..
Rust
2023. 3. 2. 01:47