mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-18 14:59:29 +00:00
8 lines
207 B
JavaScript
8 lines
207 B
JavaScript
// Use case 2
|
|
// pick a few functions with support for just one data type
|
|
|
|
import { add, multiply } from '../src/mainNumber'
|
|
|
|
console.log('\nuse case 2')
|
|
console.log('2 * 3 + 4 = ' + add(multiply(2, 3), 4))
|