mirror of
https://github.com/ilyakooo0/Idris-dev.git
synced 2024-11-15 11:56:18 +03:00
18 lines
297 B
JavaScript
18 lines
297 B
JavaScript
var i$putStr = (function() {
|
|
var util = require('util');
|
|
return function(s) {
|
|
util.print(s);
|
|
};
|
|
})();
|
|
|
|
var i$systemInfo = function(index) {
|
|
var os = require('os')
|
|
switch(index) {
|
|
case 0:
|
|
return "node";
|
|
case 1:
|
|
return os.platform();
|
|
}
|
|
return "";
|
|
}
|