mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-25 15:07:57 +00:00
8 lines
198 B
JavaScript
8 lines
198 B
JavaScript
// Use case 1:
|
|
// Pick a number of functions from the full library
|
|
|
|
import { add, multiply } from '../src/mainFull'
|
|
|
|
console.log('\nuse case 1')
|
|
console.log('2 * 3 + 4 = ' + add(multiply(2, 3), 4))
|