mathjs/bin/repl.js
2018-06-06 14:31:33 +02:00

11 lines
212 B
JavaScript
Executable File

#!/usr/bin/env node
/*
* This simply preloads mathjs and drops you into a REPL to
* help interactive debugging.
**/
math = require('../dist/math');
var repl = require('repl');
repl.start({useGlobal: true});