//all the imports should be mentioned at hte top of the script
//import * as Math from './dio';
//import {add,divide} as Math from "./dio";
console.log(Math.add(2,3));
//all imports are at top only
export var add=function(n1,n2){return n1+n2;}
export var divide=function(n1,n2){return n1/n2;}
export var PI=3.14;