Rustlings Topic: Variables

In Rust, variables are immutable by default. When a variable is immutable, once a value is bound to a name, you can’t change that value. You can make them mutable by adding mut in front of the variable name.

This is the first topic of the rustlings. And there is nothing really special about it.
Exercises are just checking whether you are familiar with the basic syntaxes of the Rust.
If you find any of the exercises a bit confusing, please re-read The Book and/or Rust By Example.

You may find solution code for the topic from my repo.

윈도우 터미널(WT)에서 키보드 인풋이 단어 단위로 입력될 때 해결법

윈도우 터미널(WT)에서 키보드 인풋이 단어 단위로 입력될 때 해결법

마소에서 제공하는 Windows 터미널WSL2를 설치해서 잘 쓰나 싶었는데 위 gif와 같이 모든 키보드 인풋이 단어 단위로 입력되는 기이한 현상을 겪었습니다. 생각보다 오랜 웹 서칭 끝에 해결법을 찾아 공유해드립니다.

Pagination