2016-04-05 06:18:16 +02:00
|
|
|
namespace console {
|
|
|
|
export function log(msg: string) {
|
|
|
|
serial.writeString(msg);
|
|
|
|
serial.writeString("\r\n");
|
|
|
|
}
|
|
|
|
}
|
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"
|
2016-05-27 04:55:25 +02:00
|
|
|
//% help=math/random-boolean color=230
|
2016-05-27 04:49:38 +02:00
|
|
|
export function randomBoolean(): boolean {
|
|
|
|
return Math.random(2) == 0;
|
|
|
|
}
|
|
|
|
}
|