added math.randomBoolean

This commit is contained in:
Peli de Halleux 2016-05-26 19:49:38 -07:00
parent 1a00fded98
commit 41c7053f3f

View File

@ -4,3 +4,14 @@ namespace console {
serial.writeString("\r\n");
}
}
namespace Math {
/**
* Generates a `true` or `false` value randomly, just like flipping a coin.
*/
//% blockId=logic_random block="pick random true or false"
//% help=math/random-boolean color=210
export function randomBoolean(): boolean {
return Math.random(2) == 0;
}
}