REPL

作者: 土豆特别想爬山 | 来源:发表于2017-07-28 09:00 被阅读5次

    REPL stands for READ-EVAL-PRINT LOOP: every line you type (READ) (i.e.type than click ⏎) is sent to the interpreter for immediate interpretation (EVAL) and provide feedback (PRINT).

    REPL — 交互式解释器环境。

    R(read)、E(evaluate)、P(print)、L(loop)

    输入值,交互式解释器会读取输入内容并对它求值,再返回结果,并重复此过程。

    相关文章

      网友评论

          本文标题:REPL

          本文链接:https://www.haomeiwen.com/subject/senxcxtx.html