Ver código fonte

Don't hard code number of dice/rolls

tags/v0.1.3
bertieb 3 anos atrás
pai
commit
2fc974aa3a
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      dice.ts

+ 1
- 1
dice.ts Ver arquivo

@@ -5,5 +5,5 @@ let number: number = 4;
for (let i = 0; i < 10; i++) {
console.log("--------------------");
console.log("Rolling", number, asphodice);
console.log(asphodice.roll(4));
console.log(asphodice.roll(number));
}

Carregando…
Cancelar
Salvar