Skip to content

Commit

Permalink
SBT structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Jimver committed Feb 25, 2020
1 parent 03073c9 commit 51a3277
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
*.class
*.log
/project/target/
/target/
5 changes: 5 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
name := "distributedsystems17"

version := "0.1"

scalaVersion := "2.13.1"
1 change: 1 addition & 0 deletions project/build.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sbt.version = 1.3.8
5 changes: 5 additions & 0 deletions src/main/scala/main.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
object main {
def main(args: Array[String]): Unit = {
println("Hello World!")
}
}

0 comments on commit 51a3277

Please sign in to comment.