Skip to content

Instantly share code, notes, and snippets.

@eladb
Created July 4, 2012 09: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 eladb/3046303 to your computer and use it in GitHub Desktop.
Save eladb/3046303 to your computer and use it in GitHub Desktop.
cantest - hello-2.js
// a simple drawing function
module.exports = function(ctx) {
ctx.fillStyle = 'red';
ctx.fillRect(10, 10, 100, 100);
ctx.fillStyle = 'blue';
ctx.fillRect(20, 20, 90, 90); // make inner box bigger
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment