diff --git a/documentation/coffee/aliases.js b/documentation/coffee/aliases.js deleted file mode 100644 index dfa07732f4..0000000000 --- a/documentation/coffee/aliases.js +++ /dev/null @@ -1,24 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var volume, winner; - -if (ignition === true) { - launch(); -} - -if (band !== SpinalTap) { - volume = 10; -} - -if (answer !== false) { - letTheWildRumpusBegin(); -} - -if (car.speed < limit) { - accelerate(); -} - -if (pick === 47 || pick === 92 || pick === 13) { - winner = true; -} - -print(inspect("My name is " + this.name)); diff --git a/documentation/coffee/array_comprehensions.js b/documentation/coffee/array_comprehensions.js deleted file mode 100644 index 1bcf8a8ca6..0000000000 --- a/documentation/coffee/array_comprehensions.js +++ /dev/null @@ -1,24 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var courses, dish, food, foods, i, j, k, l, len, len1, len2, ref; - -ref = ['toast', 'cheese', 'wine']; -for (j = 0, len = ref.length; j < len; j++) { - food = ref[j]; - eat(food); -} - -courses = ['greens', 'caviar', 'truffles', 'roast', 'cake']; - -for (i = k = 0, len1 = courses.length; k < len1; i = ++k) { - dish = courses[i]; - menu(i + 1, dish); -} - -foods = ['broccoli', 'spinach', 'chocolate']; - -for (l = 0, len2 = foods.length; l < len2; l++) { - food = foods[l]; - if (food !== 'chocolate') { - eat(food); - } -} diff --git a/documentation/coffee/block_comment.js b/documentation/coffee/block_comment.js deleted file mode 100644 index 235f935f3e..0000000000 --- a/documentation/coffee/block_comment.js +++ /dev/null @@ -1,7 +0,0 @@ -// Generated by CoffeeScript 1.10.0 - -/* -SkinnyMochaHalfCaffScript Compiler v1.0 -Released under the MIT License - */ - diff --git a/documentation/coffee/cake_tasks.js b/documentation/coffee/cake_tasks.js deleted file mode 100644 index 15e3b14c29..0000000000 --- a/documentation/coffee/cake_tasks.js +++ /dev/null @@ -1,14 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var fs; - -fs = require('fs'); - -option('-o', '--output [DIR]', 'directory for compiled code'); - -task('build:parser', 'rebuild the Jison parser', function(options) { - var code, dir; - require('jison'); - code = require('./lib/grammar').parser.generate(); - dir = options.output || 'lib'; - return fs.writeFile(dir + "/parser.js", code); -}); diff --git a/documentation/coffee/chaining.js b/documentation/coffee/chaining.js deleted file mode 100644 index 6090320ac5..0000000000 --- a/documentation/coffee/chaining.js +++ /dev/null @@ -1,4 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -$('body').click(function(e) { - return $('.box').fadeIn('fast').addClass('.active'); -}).css('background', 'white'); diff --git a/documentation/coffee/classes.js b/documentation/coffee/classes.js deleted file mode 100644 index b99dca1038..0000000000 --- a/documentation/coffee/classes.js +++ /dev/null @@ -1,57 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var Animal, Horse, Snake, sam, tom, - extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }, - hasProp = {}.hasOwnProperty; - -Animal = (function() { - function Animal(name) { - this.name = name; - } - - Animal.prototype.move = function(meters) { - return alert(this.name + (" moved " + meters + "m.")); - }; - - return Animal; - -})(); - -Snake = (function(superClass) { - extend(Snake, superClass); - - function Snake() { - return Snake.__super__.constructor.apply(this, arguments); - } - - Snake.prototype.move = function() { - alert("Slithering..."); - return Snake.__super__.move.call(this, 5); - }; - - return Snake; - -})(Animal); - -Horse = (function(superClass) { - extend(Horse, superClass); - - function Horse() { - return Horse.__super__.constructor.apply(this, arguments); - } - - Horse.prototype.move = function() { - alert("Galloping..."); - return Horse.__super__.move.call(this, 45); - }; - - return Horse; - -})(Animal); - -sam = new Snake("Sammy the Python"); - -tom = new Horse("Tommy the Palomino"); - -sam.move(); - -tom.move(); diff --git a/documentation/coffee/comparisons.js b/documentation/coffee/comparisons.js deleted file mode 100644 index 5efe77336e..0000000000 --- a/documentation/coffee/comparisons.js +++ /dev/null @@ -1,6 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var cholesterol, healthy; - -cholesterol = 127; - -healthy = (200 > cholesterol && cholesterol > 60); diff --git a/documentation/coffee/conditionals.js b/documentation/coffee/conditionals.js deleted file mode 100644 index c7d30a195e..0000000000 --- a/documentation/coffee/conditionals.js +++ /dev/null @@ -1,15 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var date, mood; - -if (singing) { - mood = greatlyImproved; -} - -if (happy && knowsIt) { - clapsHands(); - chaChaCha(); -} else { - showIt(); -} - -date = friday ? sue : jill; diff --git a/documentation/coffee/constructor_destructuring.js b/documentation/coffee/constructor_destructuring.js deleted file mode 100644 index 96f9aa2404..0000000000 --- a/documentation/coffee/constructor_destructuring.js +++ /dev/null @@ -1,17 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var Person, tim; - -Person = (function() { - function Person(options) { - var ref; - this.name = options.name, this.age = options.age, this.height = (ref = options.height) != null ? ref : 'average'; - } - - return Person; - -})(); - -tim = new Person({ - name: 'Tim', - age: 4 -}); diff --git a/documentation/coffee/default_args.js b/documentation/coffee/default_args.js deleted file mode 100644 index 9a42b308ff..0000000000 --- a/documentation/coffee/default_args.js +++ /dev/null @@ -1,9 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var fill; - -fill = function(container, liquid) { - if (liquid == null) { - liquid = "coffee"; - } - return "Filling the " + container + " with " + liquid + "..."; -}; diff --git a/documentation/coffee/do.js b/documentation/coffee/do.js deleted file mode 100644 index dec849a296..0000000000 --- a/documentation/coffee/do.js +++ /dev/null @@ -1,12 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var filename, fn, i, len; - -fn = function(filename) { - return fs.readFile(filename, function(err, contents) { - return compile(filename, contents.toString()); - }); -}; -for (i = 0, len = list.length; i < len; i++) { - filename = list[i]; - fn(filename); -} diff --git a/documentation/coffee/embedded.js b/documentation/coffee/embedded.js deleted file mode 100644 index 8ecb4f2d34..0000000000 --- a/documentation/coffee/embedded.js +++ /dev/null @@ -1,6 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var hi; - -hi = function() { - return [document.title, "Hello JavaScript"].join(": "); -}; diff --git a/documentation/coffee/existence.js b/documentation/coffee/existence.js deleted file mode 100644 index 893c8fbb80..0000000000 --- a/documentation/coffee/existence.js +++ /dev/null @@ -1,14 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var footprints, solipsism, speed; - -if ((typeof mind !== "undefined" && mind !== null) && (typeof world === "undefined" || world === null)) { - solipsism = true; -} - -speed = 0; - -if (speed == null) { - speed = 15; -} - -footprints = typeof yeti !== "undefined" && yeti !== null ? yeti : "bear"; diff --git a/documentation/coffee/expansion.js b/documentation/coffee/expansion.js deleted file mode 100644 index 8cfdb59c76..0000000000 --- a/documentation/coffee/expansion.js +++ /dev/null @@ -1,6 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var first, last, ref, text; - -text = "Every literary critic believes he will outwit history and have the last word"; - -ref = text.split(" "), first = ref[0], last = ref[ref.length - 1]; diff --git a/documentation/coffee/expressions.js b/documentation/coffee/expressions.js deleted file mode 100644 index 955de558f9..0000000000 --- a/documentation/coffee/expressions.js +++ /dev/null @@ -1,18 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var eldest, grade; - -grade = function(student) { - if (student.excellentWork) { - return "A+"; - } else if (student.okayStuff) { - if (student.triedHard) { - return "B"; - } else { - return "B-"; - } - } else { - return "C"; - } -}; - -eldest = 24 > 21 ? "Liz" : "Ike"; diff --git a/documentation/coffee/expressions_assignment.js b/documentation/coffee/expressions_assignment.js deleted file mode 100644 index d12a70f113..0000000000 --- a/documentation/coffee/expressions_assignment.js +++ /dev/null @@ -1,4 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var one, six, three, two; - -six = (one = 1) + (two = 2) + (three = 3); diff --git a/documentation/coffee/expressions_comprehension.js b/documentation/coffee/expressions_comprehension.js deleted file mode 100644 index c4a6e690a4..0000000000 --- a/documentation/coffee/expressions_comprehension.js +++ /dev/null @@ -1,11 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var globals, name; - -globals = ((function() { - var results; - results = []; - for (name in window) { - results.push(name); - } - return results; -})()).slice(0, 10); diff --git a/documentation/coffee/expressions_try.js b/documentation/coffee/expressions_try.js deleted file mode 100644 index 4c5721b867..0000000000 --- a/documentation/coffee/expressions_try.js +++ /dev/null @@ -1,12 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var error; - -alert((function() { - var error1; - try { - return nonexistent / void 0; - } catch (error1) { - error = error1; - return "And the error is ... " + error; - } -})()); diff --git a/documentation/coffee/fat_arrow.js b/documentation/coffee/fat_arrow.js deleted file mode 100644 index e4ecbb03d2..0000000000 --- a/documentation/coffee/fat_arrow.js +++ /dev/null @@ -1,12 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var Account; - -Account = function(customer, cart) { - this.customer = customer; - this.cart = cart; - return $('.shopping_cart').on('click', (function(_this) { - return function(event) { - return _this.customer.purchase(_this.cart); - }; - })(this)); -}; diff --git a/documentation/coffee/functions.js b/documentation/coffee/functions.js deleted file mode 100644 index 0215eaa3e2..0000000000 --- a/documentation/coffee/functions.js +++ /dev/null @@ -1,10 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var cube, square; - -square = function(x) { - return x * x; -}; - -cube = function(x) { - return square(x) * x; -}; diff --git a/documentation/coffee/generators.js b/documentation/coffee/generators.js deleted file mode 100644 index 3d6207d4cd..0000000000 --- a/documentation/coffee/generators.js +++ /dev/null @@ -1,13 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var perfectSquares; - -perfectSquares = function*() { - var num; - num = 0; - while (true) { - num += 1; - (yield num * num); - } -}; - -window.ps || (window.ps = perfectSquares()); diff --git a/documentation/coffee/heredocs.js b/documentation/coffee/heredocs.js deleted file mode 100644 index bdc0a7edcb..0000000000 --- a/documentation/coffee/heredocs.js +++ /dev/null @@ -1,4 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var html; - -html = "\n cup of coffeescript\n"; diff --git a/documentation/coffee/heregexes.js b/documentation/coffee/heregexes.js deleted file mode 100644 index 9206161bb3..0000000000 --- a/documentation/coffee/heregexes.js +++ /dev/null @@ -1,4 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var OPERATOR; - -OPERATOR = /^(?:[-=]>|[-+*\/%<>&|^!?=]=|>>>=?|([-+:])\1|([&|<>])\2=?|\?\.|\.{2,3})/; diff --git a/documentation/coffee/interpolation.js b/documentation/coffee/interpolation.js deleted file mode 100644 index e15acb27aa..0000000000 --- a/documentation/coffee/interpolation.js +++ /dev/null @@ -1,8 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var author, quote, sentence; - -author = "Wittgenstein"; - -quote = "A picture is a fact. -- " + author; - -sentence = (22 / 7) + " is a decent approximation of π"; diff --git a/documentation/coffee/modulo.js b/documentation/coffee/modulo.js deleted file mode 100644 index 6177461be4..0000000000 --- a/documentation/coffee/modulo.js +++ /dev/null @@ -1,8 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var modulo = function(a, b) { return (+a % (b = +b) + b) % b; }; - --7 % 5 === -2; - -modulo(-7, 5) === 3; - -tabs.selectTabAtIndex(modulo(tabs.currentIndex - count, tabs.length)); diff --git a/documentation/coffee/multiple_return_values.js b/documentation/coffee/multiple_return_values.js deleted file mode 100644 index 50cf6f802c..0000000000 --- a/documentation/coffee/multiple_return_values.js +++ /dev/null @@ -1,8 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var city, forecast, ref, temp, weatherReport; - -weatherReport = function(location) { - return [location, 72, "Mostly Sunny"]; -}; - -ref = weatherReport("Berkeley, CA"), city = ref[0], temp = ref[1], forecast = ref[2]; diff --git a/documentation/coffee/object_comprehensions.js b/documentation/coffee/object_comprehensions.js deleted file mode 100644 index 5b1a600589..0000000000 --- a/documentation/coffee/object_comprehensions.js +++ /dev/null @@ -1,18 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var age, ages, child, yearsOld; - -yearsOld = { - max: 10, - ida: 9, - tim: 11 -}; - -ages = (function() { - var results; - results = []; - for (child in yearsOld) { - age = yearsOld[child]; - results.push(child + " is " + age); - } - return results; -})(); diff --git a/documentation/coffee/object_extraction.js b/documentation/coffee/object_extraction.js deleted file mode 100644 index e70929b9c4..0000000000 --- a/documentation/coffee/object_extraction.js +++ /dev/null @@ -1,13 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var city, futurists, name, ref, ref1, street; - -futurists = { - sculptor: "Umberto Boccioni", - painter: "Vladimir Burliuk", - poet: { - name: "F.T. Marinetti", - address: ["Via Roma 42R", "Bellagio, Italy 22021"] - } -}; - -ref = futurists.poet, name = ref.name, (ref1 = ref.address, street = ref1[0], city = ref1[1]); diff --git a/documentation/coffee/objects_and_arrays.js b/documentation/coffee/objects_and_arrays.js deleted file mode 100644 index 733bc35edd..0000000000 --- a/documentation/coffee/objects_and_arrays.js +++ /dev/null @@ -1,22 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var bitlist, kids, singers, song; - -song = ["do", "re", "mi", "fa", "so"]; - -singers = { - Jagger: "Rock", - Elvis: "Roll" -}; - -bitlist = [1, 0, 1, 0, 0, 1, 1, 1, 0]; - -kids = { - brother: { - name: "Max", - age: 11 - }, - sister: { - name: "Ida", - age: 9 - } -}; diff --git a/documentation/coffee/objects_reserved.js b/documentation/coffee/objects_reserved.js deleted file mode 100644 index b8439559dc..0000000000 --- a/documentation/coffee/objects_reserved.js +++ /dev/null @@ -1,6 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -$('.account').attr({ - "class": 'active' -}); - -log(object["class"]); diff --git a/documentation/coffee/overview.js b/documentation/coffee/overview.js deleted file mode 100644 index ae0b47d4f7..0000000000 --- a/documentation/coffee/overview.js +++ /dev/null @@ -1,45 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var cubes, list, math, num, number, opposite, race, square, - slice = [].slice; - -number = 42; - -opposite = true; - -if (opposite) { - number = -42; -} - -square = function(x) { - return x * x; -}; - -list = [1, 2, 3, 4, 5]; - -math = { - root: Math.sqrt, - square: square, - cube: function(x) { - return x * square(x); - } -}; - -race = function() { - var runners, winner; - winner = arguments[0], runners = 2 <= arguments.length ? slice.call(arguments, 1) : []; - return print(winner, runners); -}; - -if (typeof elvis !== "undefined" && elvis !== null) { - alert("I knew it!"); -} - -cubes = (function() { - var i, len, results; - results = []; - for (i = 0, len = list.length; i < len; i++) { - num = list[i]; - results.push(math.cube(num)); - } - return results; -})(); diff --git a/documentation/coffee/parallel_assignment.js b/documentation/coffee/parallel_assignment.js deleted file mode 100644 index 7e064b5081..0000000000 --- a/documentation/coffee/parallel_assignment.js +++ /dev/null @@ -1,8 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var ref, theBait, theSwitch; - -theBait = 1000; - -theSwitch = 0; - -ref = [theSwitch, theBait], theBait = ref[0], theSwitch = ref[1]; diff --git a/documentation/coffee/patterns_and_splats.js b/documentation/coffee/patterns_and_splats.js deleted file mode 100644 index 5874527e57..0000000000 --- a/documentation/coffee/patterns_and_splats.js +++ /dev/null @@ -1,7 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var close, contents, i, open, ref, tag, - slice = [].slice; - -tag = ""; - -ref = tag.split(""), open = ref[0], contents = 3 <= ref.length ? slice.call(ref, 1, i = ref.length - 1) : (i = 1, []), close = ref[i++]; diff --git a/documentation/coffee/prototypes.js b/documentation/coffee/prototypes.js deleted file mode 100644 index 9b77850f2b..0000000000 --- a/documentation/coffee/prototypes.js +++ /dev/null @@ -1,4 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -String.prototype.dasherize = function() { - return this.replace(/_/g, "-"); -}; diff --git a/documentation/coffee/range_comprehensions.js b/documentation/coffee/range_comprehensions.js deleted file mode 100644 index abf703e297..0000000000 --- a/documentation/coffee/range_comprehensions.js +++ /dev/null @@ -1,11 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var countdown, num; - -countdown = (function() { - var i, results; - results = []; - for (num = i = 10; i >= 1; num = --i) { - results.push(num); - } - return results; -})(); diff --git a/documentation/coffee/scope.js b/documentation/coffee/scope.js deleted file mode 100644 index bdc6c3e8c5..0000000000 --- a/documentation/coffee/scope.js +++ /dev/null @@ -1,12 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var changeNumbers, inner, outer; - -outer = 1; - -changeNumbers = function() { - var inner; - inner = -1; - return outer = 10; -}; - -inner = changeNumbers(); diff --git a/documentation/coffee/slices.js b/documentation/coffee/slices.js deleted file mode 100644 index 0476f4ab69..0000000000 --- a/documentation/coffee/slices.js +++ /dev/null @@ -1,12 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var copy, end, middle, numbers, start; - -numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9]; - -start = numbers.slice(0, 3); - -middle = numbers.slice(3, -2); - -end = numbers.slice(-2); - -copy = numbers.slice(0); diff --git a/documentation/coffee/soaks.js b/documentation/coffee/soaks.js deleted file mode 100644 index dc07e180c2..0000000000 --- a/documentation/coffee/soaks.js +++ /dev/null @@ -1,4 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var ref, zip; - -zip = typeof lottery.drawWinner === "function" ? (ref = lottery.drawWinner().address) != null ? ref.zipcode : void 0 : void 0; diff --git a/documentation/coffee/splats.js b/documentation/coffee/splats.js deleted file mode 100644 index 34f72d4576..0000000000 --- a/documentation/coffee/splats.js +++ /dev/null @@ -1,23 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var awardMedals, contenders, gold, rest, silver, - slice = [].slice; - -gold = silver = rest = "unknown"; - -awardMedals = function() { - var first, others, second; - first = arguments[0], second = arguments[1], others = 3 <= arguments.length ? slice.call(arguments, 2) : []; - gold = first; - silver = second; - return rest = others; -}; - -contenders = ["Michael Phelps", "Liu Xiang", "Yao Ming", "Allyson Felix", "Shawn Johnson", "Roman Sebrle", "Guo Jingjing", "Tyson Gay", "Asafa Powell", "Usain Bolt"]; - -awardMedals.apply(null, contenders); - -alert("Gold: " + gold); - -alert("Silver: " + silver); - -alert("The Field: " + rest); diff --git a/documentation/coffee/splices.js b/documentation/coffee/splices.js deleted file mode 100644 index 00a212cd7e..0000000000 --- a/documentation/coffee/splices.js +++ /dev/null @@ -1,6 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var numbers, ref; - -numbers = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; - -[].splice.apply(numbers, [3, 4].concat(ref = [-3, -4, -5, -6])), ref; diff --git a/documentation/coffee/strings.js b/documentation/coffee/strings.js deleted file mode 100644 index 052181e22a..0000000000 --- a/documentation/coffee/strings.js +++ /dev/null @@ -1,4 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var mobyDick; - -mobyDick = "Call me Ishmael. Some years ago -- never mind how long precisely -- having little or no money in my purse, and nothing particular to interest me on shore, I thought I would sail about a little and see the watery part of the world..."; diff --git a/documentation/coffee/switch.js b/documentation/coffee/switch.js deleted file mode 100644 index f76d593689..0000000000 --- a/documentation/coffee/switch.js +++ /dev/null @@ -1,24 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -switch (day) { - case "Mon": - go(work); - break; - case "Tue": - go(relax); - break; - case "Thu": - go(iceFishing); - break; - case "Fri": - case "Sat": - if (day === bingoDay) { - go(bingo); - go(dancing); - } - break; - case "Sun": - go(church); - break; - default: - go(work); -} diff --git a/documentation/coffee/switch_with_no_expression.js b/documentation/coffee/switch_with_no_expression.js deleted file mode 100644 index 87280ecb40..0000000000 --- a/documentation/coffee/switch_with_no_expression.js +++ /dev/null @@ -1,19 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var grade, score; - -score = 76; - -grade = (function() { - switch (false) { - case !(score < 60): - return 'F'; - case !(score < 70): - return 'D'; - case !(score < 80): - return 'C'; - case !(score < 90): - return 'B'; - default: - return 'A'; - } -})(); diff --git a/documentation/coffee/try.js b/documentation/coffee/try.js deleted file mode 100644 index 9f85c4c51f..0000000000 --- a/documentation/coffee/try.js +++ /dev/null @@ -1,12 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var error, error1; - -try { - allHellBreaksLoose(); - catsAndDogsLivingTogether(); -} catch (error1) { - error = error1; - print(error); -} finally { - cleanUp(); -} diff --git a/documentation/coffee/while.js b/documentation/coffee/while.js deleted file mode 100644 index 634a8c6748..0000000000 --- a/documentation/coffee/while.js +++ /dev/null @@ -1,22 +0,0 @@ -// Generated by CoffeeScript 1.10.0 -var lyrics, num; - -if (this.studyingEconomics) { - while (supply > demand) { - buy(); - } - while (!(supply > demand)) { - sell(); - } -} - -num = 6; - -lyrics = (function() { - var results; - results = []; - while (num -= 1) { - results.push(num + " little monkeys, jumping on the bed. One fell out and bumped his head."); - } - return results; -})();