Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

LiveScript (programming language)

From Wikipedia, the free encyclopedia
Functional programming language
For the primary web scripting language initially known as LiveScript, seeJavaScript.
This articlerelies excessively onreferences toprimary sources. Please improve this article by addingsecondary or tertiary sources.
Find sources: "LiveScript" programming language – news ·newspapers ·books ·scholar ·JSTOR
(May 2015) (Learn how and when to remove this message)
LiveScript
Paradigmsmulti-paradigm,functional,object-oriented
Designed byJeremy Ashkenas, Satoshi Murakami, George Zahariev
Developers(same)
First appeared2011; 14 years ago (2011)
Stable release
1.6.1 / 14 July 2020; 4 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 afunctionalprogramming language thattranspiles toJavaScript. It was created byJeremy Ashkenas, the creator ofCoffeeScript, 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 ofCoffeeScript.[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 convertskebab case (dashed variables and function names) tocamel 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 usingsnake case. Dashed naming is however, common in idiomatic LiveScript[5]

Pipes

[edit]
Further information:Anonymous pipe,Named pipe, andPipeline (Unix)

Apipe 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 asF# andElixir; 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 asnot or+ can be included in pipelines or called as if they are functions.

111|>(+)222# > 333(+)12# > 3

References

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

External links

[edit]
Code analysis
Supersets
Transpilers
Concepts
Debuggers
Documentation generators
Editors (comparison)
Engines
Frameworks
Relatedtechnologies
Package managers
Module bundlers
Server-side
Unit testing frameworks (list)
People
Retrieved from "https://en.wikipedia.org/w/index.php?title=LiveScript_(programming_language)&oldid=1293448370"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp