Google Blockly - a visual programming language
31–40 of 129 posts
Re: Google Blockly - a visual programming language
#32It was pretty fun.
JS generated isn't so bad..
var n;
var A;
var i;
var x;
var j;
n = 100;
A = [];
for (i = 0; i Re: Google Blockly - a visual programming language
#33Can this program be made any shorter? http://www.dodaj.rs/f/1K/vW/2gLz63rl/blockly.png
Re: Google Blockly - a visual programming language
#34I'm surprised about the negative criticism. Looks like it would be a great teaching tool for non-computer programmers.
Re: Google Blockly - a visual programming language
#35I made a prime sieve: http://i.imgur.com/Elk5A.png It was pretty fun. JS generated isn't so bad.. var n; var A; var i; var x; var j; n = 100; A = []; for (i = 0; i
Re: Google Blockly - a visual programming language
#36I don't understand. 1st it was part of AppInventor lab experiment. Google closed it in December and MIT took it over. Now it's back? Why?
"Google blocky" > 50% brand.
Re: Google Blockly - a visual programming language
#37Can this program be made any shorter? http://www.dodaj.rs/f/1K/vW/2gLz63rl/blockly.png
Re: Google Blockly - a visual programming language
#38Re: Google Blockly - a visual programming language
#39Re: Google Blockly - a visual programming language
#40I can't seem to find the end condition for the Maze demo. There is no 'goal_reached?'