@thi.ng/pointfree
Version:
Pointfree functional composition / Forth style stack execution engine
12 lines • 360 B
TypeScript
import type { StackContext } from "./api.js";
/**
* Prints TOS to console
*
* Stack effect: `( x -- )`
*
* @param ctx -
*/
export declare const print: (ctx: StackContext) => StackContext;
export declare const printds: (ctx: StackContext) => StackContext;
export declare const printrs: (ctx: StackContext) => StackContext;
//# sourceMappingURL=io.d.ts.map