commit b0432e71888e7e7c390655a47801e97da0cbeb33 Author: Grough Date: Thu Jul 4 19:11:19 2024 +0200 Premier commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/src/Event.java b/src/Event.java new file mode 100644 index 0000000..6b075ee --- /dev/null +++ b/src/Event.java @@ -0,0 +1,2 @@ +public abstract class Event { +} diff --git a/src/Main.java b/src/Main.java new file mode 100644 index 0000000..930198c --- /dev/null +++ b/src/Main.java @@ -0,0 +1,15 @@ +//TIP To Run code, press or +// click the icon in the gutter. +public class Main { + public static void main(String[] args) { + //TIP Press with your caret at the highlighted text + // to see how IntelliJ IDEA suggests fixing it. + System.out.printf("Hello and welcome!"); + + for (int i = 1; i <= 5; i++) { + //TIP Press to start debugging your code. We have set one breakpoint + // for you, but you can always add more by pressing . + System.out.println("i = " + i); + } + } +} \ No newline at end of file diff --git a/untitled.iml b/untitled.iml new file mode 100644 index 0000000..c90834f --- /dev/null +++ b/untitled.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file