mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-11-22 12:32:09 +03:00
Move the description to the beginning with the other text
This commit is contained in:
parent
f05246ce39
commit
db8cc8bd78
@ -6,15 +6,16 @@ contributors:
|
||||
filename: coffeescript.coffee
|
||||
---
|
||||
|
||||
CoffeeScript is a little language that compiles one-to-one into the equivalent JavaScript, and there is no interpretation at runtime.
|
||||
As one of the successors to JavaScript, CoffeeScript tries its best to output readable, pretty-printed and smooth-running JavaScript code, which works well in every JavaScript runtime.
|
||||
CoffeeScript is a little language that compiles one-to-one into the equivalent
|
||||
JavaScript, and there is no interpretation at runtime. As one of the successors
|
||||
to JavaScript, CoffeeScript tries its best to output readable, pretty-printed
|
||||
and smooth-running JavaScript code, which works well in every JavaScript runtime.
|
||||
It also attempts to try and make JavaScript more in line with the trends of many
|
||||
modern languages.
|
||||
|
||||
See also [the CoffeeScript website](http://coffeescript.org/), which has a complete tutorial on CoffeeScript.
|
||||
|
||||
```coffeescript
|
||||
# CoffeeScript is a language which compiles to JavaScript.
|
||||
# It attempts to try and make JavaScript more in line with the trends of many
|
||||
# modern languages.
|
||||
# Comments are similar to Ruby and Python, using the hash symbol `#`
|
||||
|
||||
###
|
||||
|
Loading…
Reference in New Issue
Block a user