Console.print('test included'); var x = 1 + 2; module.exports = { str: function() { return x.toString(); }, increment: function() { x++; }, decrement: function() { x--; } }