This commit is contained in:
Lucas Tadeu Marculino 2025-11-17 19:52:44 -03:00
commit fb20596fba
36 changed files with 8679 additions and 0 deletions

4
www/src/rrandom.js Normal file
View file

@ -0,0 +1,4 @@
export function rrandom(min, max) {
// cria um número aleatório dentro do intervalo
return Math.random() * (max - min) + min;
}