0a708ef815
* basic hf2 service * service to send hf2 log messages * use common console.log * updated shims * adding config * adding simulator * fix hf2 logging * hide console blocks
10 lines
317 B
TypeScript
10 lines
317 B
TypeScript
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
|
|
export function randomBoolean(): boolean {
|
|
return Math.randomRange(0, 1) === 1;
|
|
}
|
|
} |