Testeksamne, og andre ting

This commit is contained in:
2025-12-03 11:33:58 +01:00
parent 7d790d8126
commit 2c91d6de4a
17 changed files with 3337 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
public class Example {
public static void main(String[] args) {
boolean m[][] = { { true, false, true, true },
{ true, false, true, false },
{ true, false, true, true } };
System.out.println("++++++++++++");
Grid g = new Grid(m);
System.out.println(g);
System.out.println("++++++++++++");
g.update();
System.out.println(g);
System.out.println("++++++++++++");
}
}