UNPKG

208 BJavaScriptView Raw
1#!/usr/bin/env node
2
3/*
4 * This simply preloads mathjs and drops you into a REPL to
5 * help interactive debugging.
6 **/
7math = require('../index');
8var repl = require('repl');
9
10repl.start({useGlobal: true});