This repository has been archived on 2024-04-03. You can view files and clone it, but cannot push or open issues or pull requests.
OLD-GZod01.fr_Source_Code-OLD/main-site/CyberTermHack/CONSOLE/console.js
2023-03-25 10:29:34 +01:00

10 lines
178 B
JavaScript

function consoleloop(){
let x= terminput('')
termshow('executing : '+x+' ...')
try{
let nfunc = new Function(x)
termshow(nfunc())
}catch(e){
termshow('error: '+e)
}
}