mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
13 lines
188 B
Plaintext
13 lines
188 B
Plaintext
class Flim {
|
|
Flam flam = new Flam();
|
|
|
|
public static void main(String[] args) {
|
|
Flim flim = new Flim();
|
|
flim.flam.beep();
|
|
}
|
|
}
|
|
|
|
class Flam {
|
|
void beep() {}
|
|
}
|