pxt-calliope/libs/microbit/helpers.ts
2016-04-04 21:18:16 -07:00

7 lines
136 B
TypeScript

namespace console {
export function log(msg: string) {
serial.writeString(msg);
serial.writeString("\r\n");
}
}