rspec/rules/S3937/noncompliant.adoc

9 lines
131 B
Plaintext
Raw Normal View History

=== Noncompliant code example
[source,text]
----
2023-02-16 14:23:33 +01:00
int thousand = 100_0;
int tenThousand = 100_00;
int million = 1_000_00_000;
----