From bb5aab83c46d088414d6db0192606346476d07d4 Mon Sep 17 00:00:00 2001 From: IMHOJEONG <39ghwjd@naver.com> Date: Sun, 8 Oct 2023 12:29:34 +0900 Subject: [PATCH] [add]: add index.md for web/glossary/static_typing --- files/ko/glossary/static_typing/index.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 files/ko/glossary/static_typing/index.md diff --git a/files/ko/glossary/static_typing/index.md b/files/ko/glossary/static_typing/index.md new file mode 100644 index 00000000000000..116712606b325f --- /dev/null +++ b/files/ko/glossary/static_typing/index.md @@ -0,0 +1,14 @@ +--- +title: 정적 타이핑 (Static typing) +slug: Glossary/Static_typing +l10n: + sourceCommit: ada5fa5ef15eadd44b549ecf906423b4a2092f34 +--- + +{{GlossarySidebar}} + +**정적 타입(statically-typed)** 언어는 컴파일 시간에 변수 타입이 알려진 언어(Java, C, or C++ 등) 입니다. 대부분의 언어에서는 프로그래머가 타입을 명시적으로 표시해야 합니다. (OCaml와 같이) 다른 경우에는, 타입 추론을 통해 프로그래머가 변수 타입을 표시하지 않을 수 있습니다. + +## 같이 보기 + +- 위키백과의 [타입 시스템](https://en.wikipedia.org/wiki/Type_system)