Test are fully implemented

This commit is contained in:
Samuel Warfield
2019-06-28 14:14:27 -06:00
parent 06d0704cf8
commit 367a56eb25
2 changed files with 43 additions and 9 deletions

View File

@ -6,7 +6,7 @@ exports.get_value_to_bind_to = function() {
return { x: 2 };
};
exports.list = function() {
return Array.prototype.slice.call(arguments);
return function() {return Array.prototype.slice.call(arguments);}
};
exports.add_arguments = function() {
return function(arg1, arg2) {return arg1 + arg2}
@ -16,4 +16,4 @@ exports.call_function = function(f) {
};
exports.call_function_arg = function(f, arg1) {
return f(arg1);
};
};