Skip to content

Instantly share code, notes, and snippets.

View shk2000v's full-sized avatar
🏠
Working from home

SeungHwan Kim shk2000v

🏠
Working from home
View GitHub Profile

Rust Cheat Sheet

Variables & Mutability

Variables are immutable by default. This makes Rust safer and makes concurrency easier.
Immutable means once a value is bound to that variable, it cannot be changed.
For example:

fn main() {
 let x = 5;
@bivoje
bivoje / TIS-100_Reference_Manual_kor.md
Last active April 18, 2024 19:52
Markdown 포맷으로 변환된 TIS-100 매뉴얼 한국어 번역

TIS-100

Tessellated Intelligence System


레퍼런스 매뉴얼

음--

@ihoneymon
ihoneymon / how-to-write-by-markdown.md
Last active July 19, 2024 12:06
마크다운(Markdown) 사용법

[공통] 마크다운 markdown 작성법

영어지만, 조금 더 상세하게 마크다운 사용법을 안내하고 있는
"Markdown Guide (https://www.markdownguide.org/)" 를 보시는 것을 추천합니다. ^^

아, 그리고 마크다운만으로 표현이 부족하다고 느끼신다면, HTML 태그를 활용하시는 것도 좋습니다.

1. 마크다운에 관하여