Explorar el Código

Don't hard code number of dice/rolls

tags/v0.1.3
bertieb hace 3 años
padre
commit
2fc974aa3a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      dice.ts

+ 1
- 1
dice.ts Ver fichero

@@ -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));
}

Cargando…
Cancelar
Guardar