This commit is contained in:
2019-11-15 22:21:23 +01:00
parent 6e2c77ab31
commit 17e4bc97f2
2 changed files with 55 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
package org.eidecker.oca8lernen.general;
import org.junit.jupiter.api.Test;
public class Loop {
@Test
public void testLoops() {
int i = 1;
/*do
System.out.println("Hallo");
while(i == 1);
*/
System.out.println("Hallo");
while(true);
}
}