summaryrefslogtreecommitdiffhomepage
path: root/de-de
diff options
context:
space:
mode:
authorUwe Krause <16082815+UweKrause@users.noreply.github.com>2021-05-12 21:33:43 +0200
committerGitHub <noreply@github.com>2021-05-12 21:33:43 +0200
commit468dc26fe38538596295a7675ebe8f1fa723f5fa (patch)
tree4669a437219241be828fbb77fb19ed087a6c4d4b /de-de
parent04d2a01f80910d349fd44456cccda26ef192be16 (diff)
[elixir/de-de] add hint to numeric underscore for better readabilityt
Diffstat (limited to 'de-de')
-rw-r--r--de-de/elixir-de.html.markdown4
1 files changed, 4 insertions, 0 deletions
diff --git a/de-de/elixir-de.html.markdown b/de-de/elixir-de.html.markdown
index 29d5132d..254cca51 100644
--- a/de-de/elixir-de.html.markdown
+++ b/de-de/elixir-de.html.markdown
@@ -35,6 +35,10 @@ viele Features mit.
0x1F # Integer
3.0 # Float
+# Für bessere Lesbarkeit des Codes können Unterstriche "_" als Trennzeichen verwendet werden
+1_000_000 == 1000000 # Integer
+1_000.567 == 1000.567 # Float
+
# Atome, das sind Literale, sind Konstanten mit Namen. Sie starten mit einem
# ':'.
:hello # Atom