From 59ae479030ea2ff3fb491431c53b9017bdc6b1d6 Mon Sep 17 00:00:00 2001 From: Jeremy Walker Date: Sun, 6 Aug 2017 16:09:13 +0100 Subject: [PATCH] Reformat 'about' documentation for nextercism --- docs/ABOUT.md | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/docs/ABOUT.md b/docs/ABOUT.md index 838bb48..fcfd291 100644 --- a/docs/ABOUT.md +++ b/docs/ABOUT.md @@ -1,14 +1,9 @@ JavaScript is a great language, but not everyone likes writing in it. Thus, people and organizations have started to write languages that transpile (transpiling keeps the same level of abstraction, compiling decreases the level of abstraction) into JavaScript, that they feel are nicer to write in than JavaScript. CoffeeScript is one example, another is Microsoft's TypeScript. -What are the specific advantages of CoffeeScript? From [coffeescript.org](http://www.coffeescript.org): +CoffeeScript is a little language that compiles into JavaScript. Underneath that awkward Java-esque patina, JavaScript has always had a gorgeous heart. CoffeeScript is an attempt to expose the good parts of JavaScript in a simple way. -> CoffeeScript is a little language that compiles into JavaScript. Underneath that awkward Java-esque patina, -> JavaScript has always had a gorgeous heart. CoffeeScript is an attempt to expose the good parts of JavaScript -> in a simple way. -> -> The golden rule of CoffeeScript is: "It's just JavaScript". The code compiles one-to-one into the equivalent JS, -> and there is no interpretation at runtime. You can use any existing JavaScript library seamlessly from CoffeeScript -> (and vice-versa). The compiled output is readable and pretty-printed, will work in every JavaScript runtime, and tends -> to run as fast or faster than the equivalent handwritten JavaScript. +The golden rule of CoffeeScript is: "It's just JavaScript". The code compiles one-to-one into the equivalent JS, and there is no interpretation at runtime. You can use any existing JavaScript library seamlessly from CoffeeScript (and vice-versa). The compiled output is readable and pretty-printed, will work in every JavaScript runtime, and tends to run as fast or faster than the equivalent handwritten JavaScript. You should learn CoffeeScript if you like programming in JavaScript, and want to experiment with a different way to write it. With transpiled versions of JavaScript (ECMA 2015, TypeScript, etc) becoming more popular, this is a valuable skill for a coder. + +_(Info taken from [coffeescript.org](http://www.coffeescript.org))_