Skip to content

Instantly share code, notes, and snippets.

@thenonameguy
Last active August 29, 2015 14:17
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 thenonameguy/a1ad5be3e21c23dfe4dd to your computer and use it in GitHub Desktop.
Save thenonameguy/a1ad5be3e21c23dfe4dd to your computer and use it in GitHub Desktop.
(ns enchilada.simple-demo
(:require
[jayq.core :refer [show]]
[enchilada :refer [ctx canvas]]
[monet.canvas :refer [fill-style fill-rect]]))
(def dummy)
(show canvas)
(->
ctx
(fill-style :red)
(fill-rect {:x 40 :y 70 :w 55 :h 47}))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment