Code-Cubismo

Welcome to Code-Cubismo, the premier destination for cubist masterpieces of code.

				// This is some cubist code
				
					function generateCubistArt() {
						var cube = [];
						for (var i = 0; i < 1000; i++) {
							cube.push(Math.random());
						}
						return cube;
					}