forked from github/purescript-typeable
6 lines
87 B
JavaScript
6 lines
87 B
JavaScript
exports.clog = function(x) {
|
|
return function() {
|
|
console.log(x);
|
|
};
|
|
};
|