pxt-calliope/libs/core/helpers.ts

11 lines
331 B
TypeScript
Raw Permalink Normal View History

2016-05-27 04:49:38 +02:00
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 weight=0 color=712672
2016-05-27 04:49:38 +02:00
export function randomBoolean(): boolean {
return Math.randomRange(0, 1) === 1;
2016-05-27 04:49:38 +02:00
}
}