User:Michael Murtaugh: Difference between revisions
No edit summary |
No edit summary |
||
| Line 2: | Line 2: | ||
We talked about [[Human Computation | how to add numbers]] today. | We talked about [[Human Computation | how to add numbers]] today. | ||
{{vimeo|45743577}} | {{vimeo|45743577}} | ||
Revision as of 18:12, 2 December 2012
Hello.
We talked about how to add numbers today.
<canvas width=500 height=300 showsrc=true> function draw() {
c = document.getElementById("canvas");
p = c.getContext('2d');
x = 10;
while(x<300) {
p.strokeRect(x, x, 20, 20);
x += 20;
}
} </canvas>