zoukankan      html  css  js  c++  java
  • REPL环境对语言的帮助

    最近在看julia语言,然后有一篇文章写的含糊其辞,把shell 和repl 弄混了,于是我很好奇,就上网查,看看到底有多少语言有repl环境,并且不支持repl的语言都是垃圾吗?

    Read-Eval-Print Loop 中文翻译成“交互式解释器”或“交互式编程环境”。

    维基百科的定义如下:
    A read–eval–print loop (REPL), also termed an interactive toplevel or language shell, is a simple, interactive computer programming environment that takes single user inputs (i.e., single expressions), evaluates them, and returns the result to the user; a program written in a REPL environment is executed piecewise. The term is most usually used to refer to programming interfaces similar to the classic Lisp machine interactive environment. Common examples include command line shells and similar environments for programming languages, and is very characteristic of scripting languages.

    成功没有捷径
  • 相关阅读:
    数据库(六)
    数据库(五)
    数据库(四)
    数据库(三)
    数据库(二)
    数据库
    函数 枚举和递归
    数据类型(四) 集合
    数据库基础
    特殊集合 结构体
  • 原文地址:https://www.cnblogs.com/orpheus89/p/10366720.html
Copyright © 2011-2022 走看看