Use common helpers/core

This commit is contained in:
Michal Moskal
2016-04-04 21:18:16 -07:00
parent b8d5ec853e
commit 47e3737245
3 changed files with 9 additions and 66 deletions

6
libs/microbit/helpers.ts Normal file
View File

@ -0,0 +1,6 @@
namespace console {
export function log(msg: string) {
serial.writeString(msg);
serial.writeString("\r\n");
}
}