UNPKG

math_sample_villarroel

Version:

math sample for UPB ================================ the following application is for learning purposes. That's it, babe. features: - **addition** adds - **multiplication** multiplies - **division** Guess what, just a division - **fibonacci** well

16 lines (13 loc) 229 B
var call_counter = require("./call_counter"); function add(x,y){ call_counter(); return x+y; } function substract(x,y){ call_counter(); return x-y; } module.exports={ addition:add, substraction:substract }