tcl-js
Version:
tcl-js is a tcl intepreter written completely in Typescript. It is meant to replicate the tcl-sh interpreter as closely as possible.
24 lines (21 loc) • 578 B
text/typescript
import { Load as puts } from './puts';
import { Load as basic } from './basic';
import { Load as list } from './list';
import { Load as proc } from './proc';
import { Load as iff } from './if';
import { Load as switchh } from './switch';
import { Load as whilee } from './loops';
import { Load as operations } from './operations';
import { Scope } from '../scope';
// Import all loadfunctions and add them to the array
let LoadFunctions: Array<(scope: Scope) => void> = [
puts,
basic,
list,
proc,
iff,
switchh,
whilee,
operations,
];
export { LoadFunctions };