mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
GitOrigin-RevId: 0857df90e3f9cc450b48b56186573a9a89b5b041
19 lines
252 B
Java
19 lines
252 B
Java
package p2;
|
|
|
|
import static p1.A1.foo1;
|
|
import static p1.A1.foo2;
|
|
import static p1.A1.foo3;
|
|
import static p1.A1.foo4;
|
|
import static p1.A1.foo5;
|
|
|
|
|
|
public static void main(String[] args) {
|
|
foo1();
|
|
foo2();
|
|
foo3();
|
|
foo4();
|
|
foo5();
|
|
print("");
|
|
}
|
|
|