9 lines
131 B
Plaintext
9 lines
131 B
Plaintext
=== Noncompliant code example
|
|
|
|
[source,text]
|
|
----
|
|
int thousand = 100_0;
|
|
int tenThousand = 100_00;
|
|
int million = 1_000_00_000;
|
|
----
|