var로 값 선언하기
Mojo에서 이름 있는 변수를 만듭니다.
var로 값 선언하기은(는) CoddyKit의 무료 Mojo Academy 강의입니다. 이것은 4개 중 1번째 강의입니다. 아래에서 전체 강의를 무료로 읽을 수 있으며, 내장 코드 에디터와 24/7 AI 튜터와 함께 브라우저에서 직접 실습할 수 있습니다. 이 강의는 Mojo Academy 학습 경로의 일부이며, 진행 상황이 웹과 CoddyKit 앱에 동기화됩니다. Mojo Academy 강의에는 총 4개의 강의가 포함되어 있습니다.
이 강의의 일부는 아직 번역되지 않았으며 영어로 표시됩니다.
Why You Need Names
A program juggles many values. To reuse one later you give it a name. In Mojo you create a named value with var. 📦
Your First var
Write var, then a name, then = and a value. Mojo stores the value under that name so you can use it again.
var score = 100Reading the Value Back
Once declared, use the name anywhere you want that value. Here score stands in for 100 when you print it.
var score = 100
print(score)Names Hold Things You Compute
A var does not have to be a literal. You can name the result of an expression so the math happens once.
var total = 100 + 50
print(total)Changing a var Later
A var is mutable: assign a new value any time without repeating var. The name simply points at its latest value.
var score = 100
score = 250Choose Clear Names
Good names describe the value. Prefer user_age over x so your code reads like plain English later.
var user_age = 30snake_case Style
Mojo names use lowercase words joined by underscores, called snake_case. It matches Python and keeps code tidy.
var first_name = "Ada"Declare Before You Use
You must create a name before reading it. Using a name Mojo has never seen is an error, which catches typos early.
One Name, One Value at a Time
A var holds a single value. Reassigning replaces the old one entirely, so the previous value is simply gone.
var mode = "easy"
mode = "hard"var Inside a Function
Most vars live inside a function. They exist while the function runs and describe that function's local work.
fn main():
var greeting = "hi"
print(greeting)var Makes Code Readable
Naming a value once and reusing it beats retyping the same number. A clear var is documentation that runs.
Quick Check
You want to store a number so you can reuse it later in your code. Which keyword declares it?
Recap
Use var to name a value, read it by name, and reassign it later. Clear snake_case names make your code easy to follow. 🎯
자주 묻는 질문
“var로 값 선언하기” 강의는 무료인가요?
네 — “var로 값 선언하기” 전체 내용을 이 웹사이트에서 무료로 읽을 수 있습니다. 인터랙티브하게 실습하려면(내장 코드 에디터와 24/7 AI 튜터), CoddyKit PRO로 업그레이드하면 Mojo Academy 강의 전체를 잠금 해제할 수 있습니다. Mojo Academy 강의에는 총 4개의 강의가 포함되어 있습니다.
“var로 값 선언하기”에서 뭘 배우나요?
Mojo에서 이름 있는 변수를 만듭니다. 브라우저에서 직접 실행하는 실습 코드로 Mojo Academy을(를) 배우며, 24/7 AI 튜터가 강의를 진행하면서 질문에 답변해줍니다.
Mojo Academy을(를) 시작하는 데 경험이 필요한가요?
사전 경험은 필요하지 않습니다. CoddyKit의 Mojo Academy은(는) 초급자부터 고급 학습자까지를 위해 구성되어 있으므로, 여기서 시작하거나 처음부터 시작할 수 있으며 자신의 속도대로 진행할 수 있습니다. 이것은 4개 중 1번째 강의입니다.
“var로 값 선언하기” 강의는 얼마나 걸리나요?
대부분의 CoddyKit 강의는 약 5~10분이 소요됩니다. 각 강의는 간결하고 인터랙티브하여 꾸준한 진행이 가능하며, 웹과 앱에서 중단한 부분부터 바로 시작할 수 있습니다.
이 Mojo Academy 강의에서 코드를 작성하고 실행할 수 있나요?
네. 모든 Mojo Academy 강의에는 내장 코드 에디터가 포함되어 있으므로, 브라우저에서 바로 실제 코드를 작성하고 실행한 후 즉시 AI 피드백을 받을 수 있습니다 — 로컬 설정이 필요 없습니다.
이 강의의 모든 강의
- var로 값 선언하기
- Int, Float, Bool
- 문자열과 텍스트
- 도움이 되는 타입 주석