UNPKG

js-forth

Version:

An implementation of [Forth](https://en.wikipedia.org/wiki/Forth_(programming_language)) in Javascript

12 lines (9 loc) 228 B
var Stack = require("./stack.js"); function Data(f) { f.instructionPointer = 0; f.dataSpace = []; f.returnStack = new Stack("Return Stack"); f.stack = new Stack("Stack"); return f; } module.exports = Data;