File tree Expand file tree Collapse file tree 3 files changed +30
-0
lines changed Expand file tree Collapse file tree 3 files changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ Language Improvements:
3434- fix(yaml) Fix tags to include non-word characters (#2486 ) [ Peter Plantinga] [ ]
3535- fix(swift) ` @objcMembers ` was being partially highlighted (#2543 ) [ Nick Randall] [ ]
3636- enh(dart) Add ` late ` and ` required ` keywords, and ` Never ` built-in type (#2550 ) [ Sam Rawlins] [ ]
37+ - enh(erlang) Add underscore separators to numeric literals (#2554 ) [ Sergey Prokhorov] [ ]
3738
3839[ Josh Goebel ] : https://github.com/yyyc514
3940[ Peter Plantinga ] : https://github.com/pplantinga
@@ -42,6 +43,7 @@ Language Improvements:
4243[ Hankun Lin ] : https://github.com/Linhk1606
4344[ Nick Randall ] : https://github.com/nicked
4445[ Sam Rawlins ] : https://github.com/srawlins
46+ [ Sergey Prokhorov ] : https://github.com/seriyps
4547
4648
4749## Version 10.0.2
Original file line number Diff line number Diff line change 1+ Integer = <span class="hljs-number">1234</span>
2+ BigInteger = <span class="hljs-number">1_234_000</span>
3+ NegInteger = -<span class="hljs-number">20_000</span>
4+ Float = <span class="hljs-number">2.34</span>
5+ BigFloat = <span class="hljs-number">3_333.14159_26535_89793</span>
6+ SciFloat = <span class="hljs-number">2.4e23</span>
7+ PlusSciFloat = <span class="hljs-number">2.4e+23</span>
8+ SmallSciFloat = <span class="hljs-number">2.4e-23</span>
9+ Binary = <span class="hljs-number">2#1010</span>
10+ StrangeBinary = <span class="hljs-number">2#1010_1010_1010</span>
11+ Octal = <span class="hljs-number">8#777</span>
12+ StrangeOctal = <span class="hljs-number">8#777_666_555</span>
13+ Hex = <span class="hljs-number">16#1ABEF</span>
14+ StrangeHex = <span class="hljs-number">16#1234_FACE_987D</span>
Original file line number Diff line number Diff line change 1+ Integer = 1234
2+ BigInteger = 1_234_000
3+ NegInteger = -20_000
4+ Float = 2.34
5+ BigFloat = 3_333.14159_26535_89793
6+ SciFloat = 2.4e23
7+ PlusSciFloat = 2.4e+23
8+ SmallSciFloat = 2.4e-23
9+ Binary = 2#1010
10+ StrangeBinary = 2#1010_1010_1010
11+ Octal = 8#777
12+ StrangeOctal = 8#777_666_555
13+ Hex = 16#1ABEF
14+ StrangeHex = 16#1234_FACE_987D
You can’t perform that action at this time.
0 commit comments