a buildable scala-js (sbt ~fastLinkJS) project that does nothing.

This commit is contained in:
fiatjaf
2022-02-22 10:01:20 -03:00
commit fecbf2d940
7 changed files with 32 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package app
import org.scalajs.dom
import org.scalajs.dom.document
object Main {
def main(args: Array[String]): Unit = {
val div = document.createElement("div")
div.id = "main"
document.body.appendChild(div)
println("Hello!")
}
}