This commit is contained in:
LinlyBoi
2023-03-22 00:18:37 +02:00
commit 13f20a55b1
14 changed files with 444 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package gr8_puzzle;
public class Puzzle {
public static void main(String[] args) {
System.out.println("Hello world");
}
}

View File

@@ -0,0 +1,9 @@
package gr8_puzzle;
import org.junit.jupiter.api.Test;
class TemplateTest {
@Test
void firstCase() {}
}