init: attempting to joing metals and scala-cli

This commit is contained in:
efim 2023-06-25 13:02:59 +00:00
parent 43ed6c456d
commit 1bfd0b1097
3 changed files with 10 additions and 0 deletions

View File

View File

@ -0,0 +1,2 @@
@main
def hello() = println("Hello, world")

View File

@ -0,0 +1,8 @@
//> using dep org.scalameta::munit::1.0.0-M1
class MyTests extends munit.FunSuite {
test("test") {
val x = 2
assertEquals(x, 2)
}
}