| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | 1 1 1 1 | 'use strict';
var def = require('./def');
// CREATE
// DOES>
// : : CREATE ] DOES> doLIST ;
// : VARIABLE CREATE 1 CELLS ALLOT ;
// : VARIABLE CREATE 0 , ;
// : ; next [ ; IMMEDIATE
// : ; POSTPONE EXIT REVEAL POSTPONE [ ; IMMEDIATE
function main (cxt) {
// : CONSTANT CREATE , DOES> @ ;
def('constant', function () {
// var w = this.word('\\s');
// console.log(w);
// console.log(this.dpop());
}, cxt);
}
module.exports = main;
|