Compare commits

...

4 Commits

4 changed files with 29 additions and 2 deletions

20
.gitignore vendored
View File

@ -1,5 +1,21 @@
# Scala + sbt build artifacts
target/
project/target/
project/project/
# Metals + BSP cache
.metals/
.bsp/
# Java / JVM artifacts
*.class *.class
*.log *.log
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid* hs_err_pid*
# IntelliJ
.idea/
*.iml
# VSCode
.vscode/

5
build.sbt Normal file
View File

@ -0,0 +1,5 @@
scalaVersion := "3.7.4"
version := "1.0"
name := "torque"
organization := "com.nsrddyn"

1
project/build.properties Normal file
View File

@ -0,0 +1 @@
sbt.version=1.11.7

View File

@ -0,0 +1,5 @@
package com.nsrddyn
def main(args: Array[String]) : Unit = {
println("Hello World!")
}