diff --git a/.bsp/sbt.json b/.bsp/sbt.json new file mode 100644 index 0000000..4d4a425 --- /dev/null +++ b/.bsp/sbt.json @@ -0,0 +1 @@ +{"name":"sbt","version":"1.11.7","bspVersion":"2.1.0-M1","languages":["scala"],"argv":["/opt/homebrew/Cellar/openjdk/25.0.1/libexec/openjdk.jdk/Contents/Home/bin/java","-Xms100m","-Xmx100m","-classpath","/opt/homebrew/Cellar/sbt/1.11.7/libexec/bin/sbt-launch.jar","-Dsbt.script=/opt/homebrew/Cellar/sbt/1.11.7/libexec/bin/sbt","xsbt.boot.Boot","-bsp"]} \ No newline at end of file diff --git a/.gitignore b/.gitignore index 7169cab..a30d514 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,8 @@ *.class *.log +target/ +project/target +project/project/ # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml hs_err_pid* diff --git a/.metals/metals.lock.db b/.metals/metals.lock.db new file mode 100644 index 0000000..7f03a39 --- /dev/null +++ b/.metals/metals.lock.db @@ -0,0 +1,6 @@ +#FileLock +#Sat Nov 15 14:08:24 CET 2025 +hostName=localhost +id=19a87a1939fcd6ec4d393ea32411a4e0b5faa1f6788 +method=file +server=localhost\:62493 diff --git a/.metals/metals.mv.db b/.metals/metals.mv.db new file mode 100644 index 0000000..13931a5 Binary files /dev/null and b/.metals/metals.mv.db differ diff --git a/build.sbt b/build.sbt new file mode 100644 index 0000000..98b9400 --- /dev/null +++ b/build.sbt @@ -0,0 +1,5 @@ +scalaVersion := "3.7.4" +version := "1.0" +name := "torque" +organization := "com.nsrddyn" + diff --git a/project/build.properties b/project/build.properties new file mode 100644 index 0000000..01a16ed --- /dev/null +++ b/project/build.properties @@ -0,0 +1 @@ +sbt.version=1.11.7 diff --git a/src/main/scala/com/nsrddyn/torque/Main.scala b/src/main/scala/com/nsrddyn/torque/Main.scala new file mode 100644 index 0000000..2eb300c --- /dev/null +++ b/src/main/scala/com/nsrddyn/torque/Main.scala @@ -0,0 +1,5 @@ +package com.nsrddyn + +def main(args: Array[String]) : Unit = { + println("Hello World!") +}