mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
11 lines
224 B
JavaScript
Executable File
11 lines
224 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
/*
|
|
* This simply preloads mathjs and drops you into a REPL to
|
|
* help interactive debugging.
|
|
**/
|
|
global.math = require('../lib/bundleAny')
|
|
const repl = require('repl')
|
|
|
|
repl.start({ useGlobal: true })
|