LiveScript
Paradigmsmulti-paradigm, functional, object-oriented
Designed byJeremy Ashkenas, Satoshi Murakami, George Zahariev
Developers(same)
First appeared2011; 15 years ago (2011)
Stable release
1.6.1 / 14 July 2020; 5 years ago (2020-07-14)[1]
Typing disciplinedynamic, weak
ScopeLexical
OSCross-platform
LicenseMIT
Filename extensions.ls
Websitelivescript.net
Influenced by
JavaScript, Haskell, CoffeeScript, F#

LiveScript is a functional programming language that transpiles to JavaScript. It was created by Jeremy Ashkenas, the creator of CoffeeScript, along with Satoshi Muramaki, George Zahariev, and many others.[2] (The name may be a homage to the beta name of JavaScript; for a few months in 1995, it was called LiveScript before the official release.[3])

Syntax

edit

LiveScript is an indirect descendant of CoffeeScript.[4] The following "Hello, World!" program is written in LiveScript, but is also compatible with CoffeeScript:

hello = ->
  console.log 'hello, world!'

While calling a function can be done with empty parens, hello(), LiveScript treats the exclamation mark as a single-character shorthand for function calls with zero arguments: hello!

LiveScript introduces a number of other incompatible idioms:

Name mangling

edit

At compile time, the LiveScript parser implicitly converts kebab case (dashed variables and function names) to camel case.

hello-world = ->
  console.log 'Hello, World!'

With this definition, both the following calls are valid. However, calling using the same dashed syntax is recommended.

hello-world!
helloWorld!

This does not preclude developers from using camel case explicitly or using snake case. Dashed naming is however, common in idiomatic LiveScript[5]

Pipes

edit

A pipe operator |> passes the result of an expression on the left of the operator as an argument to the expression on the right of it. LiveScript supports these, as do some other functional languages such as F# and Elixir; the argument passed in F# is the last one, but in Elixir is the first one.

"hello!" |> capitalize |> console.log
# > Hello!

Operators as functions

edit

When parenthesized, operators such as not or + can be included in pipelines or called as if they are functions.

111 |> (+) 222
# > 333

(+) 1 2
# > 3

References

edit
  1. ^ "LiveScript Releases". GitHub. Retrieved 21 February 2021.
  2. ^ "LiveScript contributors page". GitHub. Retrieved 20 June 2015.
  3. ^ "Chapter 4. How JavaScript Was Created". speakingjs.com. Archived from the original on 2020-02-27. Retrieved 2017-11-21.
  4. ^ "LiveScript - a language which compiles to JavaScript".
  5. ^ "prelude.ls - a functionally oriented utility library in LiveScript".

📚 Artikel Terkait di Wikipedia

List of programming languages

Lithe Little b LiveCode LiveScript LLL Logo Logtalk LotusScript LPC LSE LSL Lua Lucid Lustre LYaPAS Lynx M Formula language M4 Machine code MAD (Michigan

List of programming languages by type

list of notable programming languages, grouped by notable language attribute. As a language can have multiple attributes, the same language can be in multiple

Timeline of programming languages

record of notable programming languages, by decade. History of computing hardware History of programming languages Programming language Timeline of computing

F Sharp (programming language)

strongly typed, multi-paradigm programming language that encompasses functional, imperative, and object-oriented programming methods. It is most often used

Haskell

typed, purely functional programming language with type inference and lazy evaluation. Haskell pioneered several programming language features including type

Hello, world

in most general-purpose programming languages, this program is used to illustrate a language's basic syntax. Such a program is often the first written

List of C-family programming languages

Notable programming sources use terms like C-style, C-like, a dialect of C, having C-like syntax. The term curly bracket programming language denotes

JavaScript

JavaScript (JS) is a programming language and core technology of the Web, alongside HTML and CSS. Created by Brendan Eich in 1995, it is maintained by