我想运行一个脚本,.load myFile.js
但我不想打印文件中的所有内容,只打印文件的值/结果。我在我的项目中使用 Electron、xterm.js 和 node-pty。
例如,使用以下代码:
// type your code here
function sum(x, y) {
return x + y
}
sum(2, 3)
我得到这样的东西:
> // type your code here
undefined
> function sum(x, y) {
... return x + y
... }
undefined
> sum(2, 3)
5
>