less than 1 minute read


blog

블록체인 확장성 관련 포스팅 찾음.

https://vitalik.ca/general/2021/05/23/scaling.html

블로그 자체를 이전에 봤던 플랫폼으로 이식하고싶은데.. 잊어버렸다.

물어봐서 찾음

https://github.com/cotes2020/jekyll-theme-chirpy

study

rust

러스트에서 함수의 타입 지정과, 인스턴스 초기화시 타입 지정은 아래와 같이 차이가 있다: 왜 이렇게 되어있는지는 모르겠다.

fn fruit_basket() -> HashMap<String, u32> {
    let mut basket = HashMap::<String, u32>::new(); // TODO: declare your hash map here.

Comments