From 3e04088202f52b6ad1da6769029faf956f02f6e1 Mon Sep 17 00:00:00 2001 From: Bryson Zimmerman Date: Thu, 10 Oct 2024 11:41:25 -0400 Subject: [PATCH] Project Setup --- .idea/gradle.xml | 17 +++++++++++++++++ .idea/kotlinc.xml | 6 ++++++ .idea/misc.xml | 7 +++++++ .idea/vcs.xml | 6 ++++++ src/main/kotlin/Main.kt | 5 +++++ 5 files changed, 41 insertions(+) create mode 100644 .idea/gradle.xml create mode 100644 .idea/kotlinc.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/vcs.xml create mode 100644 src/main/kotlin/Main.kt diff --git a/.idea/gradle.xml b/.idea/gradle.xml new file mode 100644 index 0000000..2a65317 --- /dev/null +++ b/.idea/gradle.xml @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/kotlinc.xml b/.idea/kotlinc.xml new file mode 100644 index 0000000..6d0ee1c --- /dev/null +++ b/.idea/kotlinc.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..6e7e3ec --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/main/kotlin/Main.kt b/src/main/kotlin/Main.kt new file mode 100644 index 0000000..0eba5d3 --- /dev/null +++ b/src/main/kotlin/Main.kt @@ -0,0 +1,5 @@ +package technology.zim + +fun main() { + println("Hello World!") +} \ No newline at end of file