Skip to content

Instantly share code, notes, and snippets.

@xogeny
Last active August 29, 2015 14:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xogeny/78c91367c70c3af310ac to your computer and use it in GitHub Desktop.
Save xogeny/78c91367c70c3af310ac to your computer and use it in GitHub Desktop.
object ScalaJSExample extends js.JSApp {
def main() = {
Page.clear();
val (h, w) = (Page.canvas.height, Page.canvas.width)
Page.renderer.fillStyle = "blue"
Page.renderer.fillRect(20, 20, 30, 30)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment