Skip to content

Instantly share code, notes, and snippets.

@fomkin
Last active August 29, 2015 14:07
Show Gist options
  • Save fomkin/48de919ec94d8dc56d63 to your computer and use it in GitHub Desktop.
Save fomkin/48de919ec94d8dc56d63 to your computer and use it in GitHub Desktop.
object HelloWorld extends Application with MKML {
val message = Var("Hello world")
def start() = {
div(
input(`value` =:= message),
span(message)
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment