mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-01 04:20:39 +02:00
[elixir/de-de] add hint to numeric underscore for better readabilityt
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user