From d280dae5c1015ae40aa96ce714b7bb091362fddc Mon Sep 17 00:00:00 2001 From: Alexis DRAI Date: Fri, 3 Feb 2023 15:56:48 +0100 Subject: [PATCH] :tada: --- .gitignore | 58 ++++++++++++++++++++++++++++++++++++ src/com/alexisdrai/Main.java | 8 +++++ 2 files changed, 66 insertions(+) create mode 100644 .gitignore create mode 100644 src/com/alexisdrai/Main.java diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e923211 --- /dev/null +++ b/.gitignore @@ -0,0 +1,58 @@ +# ---> Java +# Compiled class file +*.class + +# Log file +*.log + +# BlueJ files +*.ctxt + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.nar +*.ear +*.zip +*.tar.gz +*.rar + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* +replay_pid* + +# ---> JetBrains +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +# User-specific stuff +.idea/ + +# Gradle and Maven with auto-import +# When using Gradle or Maven with auto-import, you should exclude module files, +# since they will be recreated, and may cause churn. Uncomment if using +# auto-import. +# *.iml +# *.ipr + +# File-based project format +*.iws + +# IntelliJ +out/ +*.iml + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties diff --git a/src/com/alexisdrai/Main.java b/src/com/alexisdrai/Main.java new file mode 100644 index 0000000..d294541 --- /dev/null +++ b/src/com/alexisdrai/Main.java @@ -0,0 +1,8 @@ +package com.alexisdrai; + +public class Main { + + public static void main(String[] args) { + // write your code here + } +}