mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
12 lines
206 B
Plaintext
12 lines
206 B
Plaintext
public class A {
|
|
void test(String s) {
|
|
System.out.println(s);
|
|
System.out.println(s.length());
|
|
}
|
|
|
|
void callTest() {
|
|
String aString = "abc";
|
|
test(aString);
|
|
}
|
|
}
|