bkc
Version:
:dog: If there are no dogs in Heaven, then when I die I want to go where they went.
27 lines (26 loc) • 500 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.internalList = [
'print',
'return',
'warn',
];
exports.reservedWordList = [
'var',
];
exports.internals = [
{
command: 'print',
func: (value) => {
console.log(value);
return 0;
},
},
{
command: 'warn',
func: (value) => {
console.warn(value);
return 0;
},
},
];