Skip to content

Instantly share code, notes, and snippets.

@stanch
Last active August 29, 2015 14:02
Show Gist options
  • Save stanch/e30f7c897b4ca822ca37 to your computer and use it in GitHub Desktop.
Save stanch/e30f7c897b4ca822ca37 to your computer and use it in GitHub Desktop.
import org.scalajs.dom
import scalatags.HtmlTag
import scalatags.all._
import scalatags._
@JSExport
object ScalaJSExample {
@JSExport
def main(args: Array[String]) = {
val scalatags = "ScalaTags"
val link = a(href := "https://github.com/lihaoyi/scalatags")("*")
val pros = ul(
li(green("Just Scala code")),
li(green("Use values and modules"))
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment