From 2a5a3f7ec3014c43432d10ad13062d009e58fb45 Mon Sep 17 00:00:00 2001 From: Mr SL1D3R <76396365+Mr-sl1d3r@users.noreply.github.com> Date: Thu, 13 Feb 2025 11:57:06 +0100 Subject: [PATCH] Added Core file --- .gitignore | 39 +++++++++++++++++++++ pom.xml | 17 +++++++++ src/main/java/com/mrsl1d3r/wordle/Main.java | 17 +++++++++ 3 files changed, 73 insertions(+) create mode 100644 .gitignore create mode 100644 pom.xml create mode 100644 src/main/java/com/mrsl1d3r/wordle/Main.java diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3d0a3ea --- /dev/null +++ b/.gitignore @@ -0,0 +1,39 @@ +.idea/ +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/**/target/ +!**/src/test/**/target/ + +### IntelliJ IDEA ### +.idea/modules.xml +.idea/jarRepositories.xml +.idea/compiler.xml +.idea/libraries/ +*.iws +*.iml +*.ipr + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ +!**/src/main/**/build/ +!**/src/test/**/build/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..87919af --- /dev/null +++ b/pom.xml @@ -0,0 +1,17 @@ + + + 4.0.0 + + com.mrsl1d3r.wordle + Wordle + 1.0-SNAPSHOT + + + 22 + 22 + UTF-8 + + + \ No newline at end of file diff --git a/src/main/java/com/mrsl1d3r/wordle/Main.java b/src/main/java/com/mrsl1d3r/wordle/Main.java new file mode 100644 index 0000000..57a9dae --- /dev/null +++ b/src/main/java/com/mrsl1d3r/wordle/Main.java @@ -0,0 +1,17 @@ +package com.mrsl1d3r.wordle; + +//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