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