aboutsummaryrefslogtreecommitdiff
path: root/files/ko/glossary/dynamic_programming_language/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ko/glossary/dynamic_programming_language/index.html')
-rw-r--r--files/ko/glossary/dynamic_programming_language/index.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/files/ko/glossary/dynamic_programming_language/index.html b/files/ko/glossary/dynamic_programming_language/index.html
new file mode 100644
index 0000000000..b031c498fa
--- /dev/null
+++ b/files/ko/glossary/dynamic_programming_language/index.html
@@ -0,0 +1,21 @@
+---
+title: 동적 프로그래밍 언어
+slug: Glossary/Dynamic_programming_language
+translation_of: Glossary/Dynamic_programming_language
+original_slug: Glossary/동적_프로그래밍_언어
+---
+<p>A <strong>dynamic programming language</strong> is a programming language in which operations otherwise done at compile-time can be done at run-time. For example, in JavaScript it is possible to change the type of a variable or add new properties or methods to an object while the program is running.</p>
+
+<p>This is opposed to so-called static programming languages, in which such changes are normally not possible.</p>
+
+<div class="note">
+<p>Note that while there is indeed a connection between this dynamic/static property of programming languages and <a href="/en-US/docs/Glossary/Dynamic_typing">dynamic</a>/<a href="/en-US/docs/Glossary/Static_typing">static-typing</a>, the two are far from synonymous.</p>
+</div>
+
+<h2 id="Learn_more">Learn more</h2>
+
+<h3 id="General_knowledge">General knowledge</h3>
+
+<ul>
+ <li>{{Interwiki("wikipedia", "Dynamic programming language")}} on Wikipedia</li>
+</ul>