pxt-calliope/libs/core/helpers.ts
2018-07-31 16:36:52 -04:00

17 lines
454 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 weight=0
export function randomBoolean(): boolean {
return Math.randomRange(0, 1) === 1;
}
}