summaryrefslogtreecommitdiffhomepage
path: root/coffeescript.html.markdown
diff options
context:
space:
mode:
authorSamantha McVey <samantham@posteo.net>2016-12-14 15:53:36 -0800
committerSamantha McVey <samantham@posteo.net>2016-12-14 15:53:36 -0800
commitdb8cc8bd782a08c88cfb7d293ffd8c30a53d9fbe (patch)
treebc59082c33b1e120d928e2ee7ab96448a1e1e6a6 /coffeescript.html.markdown
parentf05246ce39a8c3599eee7c69ad5abcf76ecec5fc (diff)
Move the description to the beginning with the other text
Diffstat (limited to 'coffeescript.html.markdown')
-rw-r--r--coffeescript.html.markdown11
1 files changed, 6 insertions, 5 deletions
diff --git a/coffeescript.html.markdown b/coffeescript.html.markdown
index 27aebe2c..2aae6966 100644
--- a/coffeescript.html.markdown
+++ b/coffeescript.html.markdown
@@ -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 `#`
###