mirror of
https://github.com/nasrlol/torque.git
synced 2025-11-27 23:09:21 +01:00
feature: gitignore
This commit is contained in:
parent
8fd093f82c
commit
60fdc2d043
1
.bsp/sbt.json
Normal file
1
.bsp/sbt.json
Normal file
@ -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"]}
|
||||
3
.gitignore
vendored
3
.gitignore
vendored
@ -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*
|
||||
|
||||
6
.metals/metals.lock.db
Normal file
6
.metals/metals.lock.db
Normal file
@ -0,0 +1,6 @@
|
||||
#FileLock
|
||||
#Sat Nov 15 14:08:24 CET 2025
|
||||
hostName=localhost
|
||||
id=19a87a1939fcd6ec4d393ea32411a4e0b5faa1f6788
|
||||
method=file
|
||||
server=localhost\:62493
|
||||
BIN
.metals/metals.mv.db
Normal file
BIN
.metals/metals.mv.db
Normal file
Binary file not shown.
5
build.sbt
Normal file
5
build.sbt
Normal file
@ -0,0 +1,5 @@
|
||||
scalaVersion := "3.7.4"
|
||||
version := "1.0"
|
||||
name := "torque"
|
||||
organization := "com.nsrddyn"
|
||||
|
||||
1
project/build.properties
Normal file
1
project/build.properties
Normal file
@ -0,0 +1 @@
|
||||
sbt.version=1.11.7
|
||||
5
src/main/scala/com/nsrddyn/torque/Main.scala
Normal file
5
src/main/scala/com/nsrddyn/torque/Main.scala
Normal file
@ -0,0 +1,5 @@
|
||||
package com.nsrddyn
|
||||
|
||||
def main(args: Array[String]) : Unit = {
|
||||
println("Hello World!")
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user