From b0432e71888e7e7c390655a47801e97da0cbeb33 Mon Sep 17 00:00:00 2001 From: Grough Date: Thu, 4 Jul 2024 19:11:19 +0200 Subject: [PATCH] Premier commit --- README.md | 0 src/Event.java | 2 ++ src/Main.java | 15 +++++++++++++++ untitled.iml | 11 +++++++++++ 4 files changed, 28 insertions(+) create mode 100644 README.md create mode 100644 src/Event.java create mode 100644 src/Main.java create mode 100644 untitled.iml 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