2024-10-25 15:27:02 +00:00
|
|
|
import {assemble} from '@/core/Dispatcher'
|
2024-09-29 13:48:06 -07:00
|
|
|
import * as specifications from './all'
|
|
|
|
|
|
2024-10-25 15:27:02 +00:00
|
|
|
const math = assemble(specifications)
|
|
|
|
|
console.log('PRODUCED', math)
|
|
|
|
|
|
|
|
|
|
console.log(math.typeOf(17))
|
|
|
|
|
console.log(math.typeOf({re: 3.4, im: -0.1}))
|
|
|
|
|
console.log(math.typeOf({re: {re: 1, im: 0}, im: {re: 0, im: -1}}))
|
|
|
|
|
console.log(math.typeOf('no string type yet'))
|