📅  最后修改于: 2022-03-11 15:01:14.602000             🧑  作者: Mango
//node is typed in the console to access REPL
$ node
//the > indicates that REPL is running
// anything written after > will be evaluated
> console.log("HI")
// REPL has evaluated the line and has printed out HI
HI