일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Vue.js
- 컨트렉트 배포 자동화
- ambiguous function description
- 러스트 기초 학습
- 러스트기초
- SBT표준
- ethers typescript
- Vue
- 체인의정석
- 러스트 기초
- 스마트컨트렉트 함수이름 중복 호출
- 스마트 컨트렉트 함수이름 중복
- 오블완
- 프록시배포구조
- ethers websocket
- ethers
- 머신러닝기초
- vue기초
- 스마트컨트렉트프록시
- 컨트렉트 동일한 함수이름 호출
- nest.js설명
- ethers v6
- 티스토리챌린지
- chainlink 설명
- ethers type
- 스마트컨트렉트 예약어 함수이름 중복
- rust 기초
- git rebase
- multicall
- 스마트컨트렉트테스트
Archives
- Today
- Total
목록rust statement (1)
체인의정석
Rust 기본 프로그래밍 컨셉 (함수)
기본 함수 기본 함수는 다음과 같이 정의한다. fn main() { another_function(5); } fn another_function(x: i32) { println!("The value of x is: {x}"); } 이런 식으로 정의를 하게 되면 ➜ functions (master) ✗ cargo run Compiling functions v0.1.0 (/Users/chohk/Desktop/git/rust/functions) Finished dev [unoptimized + debuginfo] target(s) in 0.84s Running `target/debug/functions` The value of x is: 5 이런 결과가 나오게 된다. 여러 변수의 정의는 그냥 일반적인 함수와 ..
블록체인/Rust
2023. 1. 16. 12:17