mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
7 lines
112 B
Plaintext
7 lines
112 B
Plaintext
record Range(int from, int to) {
|
|
<spot>public Range {
|
|
if (from > to) {
|
|
from = to;
|
|
}
|
|
}</spot>
|
|
} |