Hack together a "Hello, world" in Scala with Laminar

This commit is contained in:
Aaron Fenyes 2024-08-07 13:32:12 -07:00
parent 244f222eb0
commit c376fcdad8
7 changed files with 329 additions and 0 deletions

View file

@ -0,0 +1,12 @@
enablePlugins(ScalaJSPlugin)
name := "Lattice Circle"
scalaVersion := "3.4.2"
// This is an application with a main method
scalaJSUseMainModuleInitializer := true
libraryDependencies += "com.raquo" %%% "laminar" % "17.0.0"
/*libraryDependencies += "org.scalanlp" %% "breeze" % "2.1.0"*/
libraryDependencies += "ai.dragonfly" %%% "slash" % "0.3.1"
libraryDependencies += "org.scala-js" %%% "scalajs-dom" % "2.8.0"