pxt-calliope/libs/microbit/helpers.ts
2016-05-26 19:55:25 -07:00

17 lines
446 B
TypeScript

namespace console {
export function log(msg: string) {
serial.writeString(msg);
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=230
export function randomBoolean(): boolean {
return Math.random(2) == 0;
}
}