added math.randomBoolean
This commit is contained in:
parent
1a00fded98
commit
41c7053f3f
@ -4,3 +4,14 @@ namespace console {
|
|||||||
serial.writeString("\r\n");
|
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;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user