diff options
| author | Abdellah El Morabit <nsrddyn@gmail.com> | 2025-11-15 14:45:59 +0100 |
|---|---|---|
| committer | Abdellah El Morabit <nsrddyn@gmail.com> | 2025-11-15 14:45:59 +0100 |
| commit | 60fdc2d0432d1f8fb736bc8d396b24b45ea74724 (patch) | |
| tree | 48a71678ec2d7087bb3c45dfc0336470edf4239f | |
| parent | 8fd093f82ca0f6f3bfc08f42e47ede4fc86bea3b (diff) | |
feature: gitignore
| -rw-r--r-- | .bsp/sbt.json | 1 | ||||
| -rw-r--r-- | .gitignore | 3 | ||||
| -rw-r--r-- | .metals/metals.lock.db | 6 | ||||
| -rw-r--r-- | .metals/metals.mv.db | bin | 0 -> 53248 bytes | |||
| -rw-r--r-- | build.sbt | 5 | ||||
| -rw-r--r-- | project/build.properties | 1 | ||||
| -rw-r--r-- | src/main/scala/com/nsrddyn/torque/Main.scala | 5 |
7 files changed, 21 insertions, 0 deletions
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 @@ -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 Binary files differnew file mode 100644 index 0000000..13931a5 --- /dev/null +++ b/.metals/metals.mv.db 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!") +} |
