Skip to content

Instantly share code, notes, and snippets.

View manoelmaciel's full-sized avatar

Manoel Braz Maciel manoelmaciel

View GitHub Profile
// Tabuleiro de Xadrez
var stringTabuleiro = "";
var stringLinha = '';
var tamanho = 8;
for (linhas=0; linhas<tamanho; linhas++) {
if (linhas % 2 === 0) {
for (linha=0; linha<tamanho; linha++) {
if (linha%2 === 0) {