2023-08-16 14:38:45 +02:00
|
|
|
public class Grundlagen {
|
2023-08-16 14:52:04 +02:00
|
|
|
public static void main(String[] args) {
|
|
|
|
System.out.println("Hello World");
|
|
|
|
|
|
|
|
int x = 99;
|
|
|
|
int y = 1;
|
|
|
|
x = x + 1;
|
|
|
|
x = x + y;
|
|
|
|
System.out.println(x);
|
2023-08-16 14:38:45 +02:00
|
|
|
}
|
|
|
|
}
|