Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
quelgar committed Dec 1, 2023
1 parent 0c78540 commit 783b1b0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,8 @@ nativeConfig ~= { c =>
.withGC(GC.immix) // commix
.withTargetTriple("arm64-apple-macosx13.0.0")
}

scalacOptions ++= Seq(
"-new-styntax",
"-no-indent"
)
3 changes: 2 additions & 1 deletion src/main/scala/Main.scala
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import java.nio.charset.StandardCharsets
import scalauv.checkErrorThrowIO

object Main {
def main(args: Array[String]): Unit =
def main(args: Array[String]): Unit = {

val filename = c"test.txt"

Expand Down Expand Up @@ -115,4 +115,5 @@ object Main {
// val uvBuf = LibUv.uv_buf_init(b, length)
// println(s"_1 = ${uvBuf._1}")
// println(s"_2 = ${uvBuf._2}")
}
}

0 comments on commit 783b1b0

Please sign in to comment.