2018-11-28 16:45:36 +01:00

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))