0.0.20 • Published 4 years ago

exorbitant v0.0.20

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

exorbitant

Web calculator library

Example cli usage

  1. Open the demo link to run the exorbitant REPL on the WebAssembly.sh.
  2. Run the following example math expression:
    var a[15]:={1}; var b[8]; fir1(7,0.35,b); var c[22]; conv(a,b,c); print(c);

Example node usage

const {createExorbitantRuntime} = require('exorbitant');
(async () => {
    const exorbitant = await createExorbitantRuntime().createExorbitant({
        expression: 'var a[15]:={1}; var b[8]; fir1(7,0.35,b); var c[22]; conv(a,b,c); print(c);'
    });
    exorbitant.value();
})().catch(ex => {
    console.error(ex);
    process.exit(1);
});
0.0.20

4 years ago

0.0.16

4 years ago

0.0.17

4 years ago

0.0.18

4 years ago

0.0.19

4 years ago

0.0.15

5 years ago

0.0.11

5 years ago

0.0.12

5 years ago

0.0.13

5 years ago

0.0.14

5 years ago

0.0.10

5 years ago

0.0.9

5 years ago

0.0.8

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

6 years ago