global.math_test = {
pow(base, exp) {
return Math.pow(base, exp);
},
add_one(val) {
return val + 1;
};