2023-02-09 15:57:52 +02:00
|
|
|
public class Main {
|
|
|
|
public static void main(String[] args) {
|
2023-02-16 16:10:38 +02:00
|
|
|
System.out.println(args[1]);
|
2023-02-09 15:57:52 +02:00
|
|
|
System.out.println("Hello world!");
|
|
|
|
// System.out.println(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void myFunction() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
int myFunction2() {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|