This commit is contained in:
Anton Danilkin
2018-08-13 18:59:52 +03:00
62 changed files with 1537 additions and 168 deletions

View File

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