mirror of
https://github.com/nasrlol/torque.git
synced 2025-11-27 23:09:21 +01:00
Compare commits
4 Commits
8fd093f82c
...
3b21664094
| Author | SHA1 | Date | |
|---|---|---|---|
| 3b21664094 | |||
| bedb6d6cb7 | |||
| b5e3d99f83 | |||
| 60fdc2d043 |
20
.gitignore
vendored
20
.gitignore
vendored
@ -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
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