mirror of
https://github.com/ASDjonok/OOP_IO-2x_2023.git
synced 2025-07-06 00:39:23 +03:00
15 lines
231 B
Java
15 lines
231 B
Java
|
public class Main {
|
||
|
public static void main(String[] args) {
|
||
|
System.out.println("Hello world!");
|
||
|
// System.out.println(1);
|
||
|
}
|
||
|
|
||
|
void myFunction() {
|
||
|
|
||
|
}
|
||
|
|
||
|
int myFunction2() {
|
||
|
return 1;
|
||
|
}
|
||
|
}
|