일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Vue
- vue기초
- ethers websocket
- 체인의정석
- 스마트 컨트렉트 함수이름 중복
- 컨트렉트 배포 자동화
- ethers typescript
- 티스토리챌린지
- rust 기초
- ambiguous function description
- ethers type
- 오블완
- 스마트컨트렉트 함수이름 중복 호출
- ethers v6
- 계정추상화
- 스마트컨트렉트 예약어 함수이름 중복
- chainlink 설명
- multicall
- Vue.js
- 컨트렉트 동일한 함수이름 호출
- 머신러닝기초
- ethers
- erc4337
- 러스트기초
- 스마트컨트렉트테스트
- erc4337 contract
- git rebase
- SBT표준
- 러스트 기초
- 러스트 기초 학습
- Today
- Total
목록러스트기초 (3)
체인의정석
기본 데이터 타입 러스트의 모든 값들은 데이터 타입을 가지고 있다. 컴파일 하는 시점에서 타입들에 대한 정의가 이루어지지 않는다면 모두 에러가 나게 되는 것이다. let guess: u32 = "42".parse().expect("Not a number!"); 요런 식으로 : 뒤에 타입을 쓰면 타입이 지정된다. 타입스크립트와 똑같이 생겨서 익히기 쉬웠다. 타입지정을 안하면 다음과 같은 에러가 나오게 된다. $ cargo build Compiling no_type_annotations v0.1.0 (file:///projects/no_type_annotations) error[E0282]: type annotations needed --> src/main.rs:2:9 | 2 | let guess = "42..
변수와 가변성 그리고 mut 먼저 변수를 한번 테스트 해보겠다. ➜ rust cargo new variables Created binary (application) `variables` package 이런식으로 명령어를 내리게 되면 variables라는 경로가 나오게 된다. fn main() { let x = 5; println!("The value of x is: {x}"); x = 6; println!("The value of x is: {x}"); } 이런식으로 let으로 선언한 후 다시 접근하여 변수를 변경하려 할 경우 error[E0384]: cannot assign twice to immutable variable `x` --> src/main.rs:4:5 | 2 | let x = 5; | -..
컨트렉트 개발자로서 이제 Rust도 학습해보고자 한다. 이에 따라서 기본적인 학습을 진행하였다. mac 환경에서 설치 공식 도큐먼트 사용 https://doc.rust-lang.org/book/ch01-01-installation.html Installation - The Rust Programming Language The first step is to install Rust. We’ll download Rust through rustup, a command line tool for managing Rust versions and associated tools. You’ll need an internet connection for the download. Note: If you prefer not to..