mirror of
https://github.com/yaitskov/purescript-typeable.git
synced 2024-11-10 07:53:05 +00:00
6 lines
87 B
JavaScript
6 lines
87 B
JavaScript
exports.clog = function(x) {
|
|
return function() {
|
|
console.log(x);
|
|
};
|
|
};
|