mirror of
https://github.com/ilyakooo0/Idris-dev.git
synced 2024-11-15 11:56:18 +03:00
15 lines
210 B
JavaScript
15 lines
210 B
JavaScript
var i$putStr = function(s) {
|
|
console.log(s);
|
|
};
|
|
|
|
|
|
var i$systemInfo = function(index) {
|
|
switch(index) {
|
|
case 0:
|
|
return "javascript";
|
|
case 1:
|
|
return navigator.platform;
|
|
}
|
|
return "";
|
|
}
|