diff --git a/bin/Grundlagen.class b/bin/Grundlagen.class index 334684c..30997c9 100644 Binary files a/bin/Grundlagen.class and b/bin/Grundlagen.class differ diff --git a/src/Grundlagen.java b/src/Grundlagen.java index d6aba6a..76120e3 100644 --- a/src/Grundlagen.java +++ b/src/Grundlagen.java @@ -3,9 +3,15 @@ public class Grundlagen { System.out.println("Hello World"); int x = 99; - int y = 1; + int y = 2; x = x + 1; x = x + y; System.out.println(x); + + char myA = 'a'; + + if (x > 101) { + System.out.println("Der Wert is grösser als 101"); + } } } \ No newline at end of file