Unfancy JavaScript
Go to file
Jeremy Ashkenas 5f94186b40 adding the compiled parser back into the repo (after all that) so that it can be used as the source for the narwhal package 2010-01-23 12:44:36 -05:00
bin changed bin/coffee-script to bin/coffee 2009-12-26 08:57:13 -08:00
documentation doc updates -- widened the code segments for the sake of the JavaScript 2010-01-17 18:33:31 -05:00
examples added binary search example -- chapter 6 of beautiful code 2010-01-17 16:18:24 -05:00
lib adding the compiled parser back into the repo (after all that) so that it can be used as the source for the narwhal package 2010-01-23 12:44:36 -05:00
test fixing comments as the last line of a block 2010-01-20 20:36:31 -05:00
.gitignore adding the compiled parser back into the repo (after all that) so that it can be used as the source for the narwhal package 2010-01-23 12:44:36 -05:00
LICENSE bumping the license to 2010 2010-01-10 17:57:29 -05:00
README mentioning the racc gem in the readme 2010-01-07 09:43:44 -05:00
Rakefile adding the compiled parser back into the repo (after all that) so that it can be used as the source for the narwhal package 2010-01-23 12:44:36 -05:00
coffee-script.gemspec CoffeeScript 0.2.6 is on the books 2010-01-17 18:12:59 -05:00
index.html doc updates -- widened the code segments for the sake of the JavaScript 2010-01-17 18:33:31 -05:00
package.json CoffeeScript 0.2.6 is on the books 2010-01-17 18:12:59 -05:00

README

=                              
            {                   
         }   }   {              
        {   {  }  }             
         }   }{  {               
        {  }{  }  }                    _____       __  __           
       ( }{ }{  { )                   / ____|     / _|/ _|          
     .- { { }  { }} -.               | |     ___ | |_| |_ ___  ___ 
    (  ( } { } { } }  )              | |    / _ \|  _|  _/ _ \/ _ \ 
    |`-..________ ..-'|              | |___| (_) | | | ||  __/  __/ 
    |                 |               \_____\___/|_| |_| \___|\___|
    |                 ;--.           
    |                (__  \            _____           _       _   
    |                 | )  )          / ____|         (_)     | |  
    |                 |/  /          | (___   ___ _ __ _ _ __ | |_ 
    |                 (  /            \___ \ / __| '__| | '_ \| __|
    |                 |/              ____) | (__| |  | | |_) | |_ 
    |                 |              |_____/ \___|_|  |_| .__/ \__|
     `-.._________..-'                                  | |        
                                                        |_|
                  
                                                        
  CoffeeScript is a little language that compiles into JavaScript.
  
  Install the compiler:
  gem install coffee-script
  
  Compile a script:
  coffee /path/to/script.coffee
  
  For documentation, usage, and examples, see:
  http://jashkenas.github.com/coffee-script/
  
  To suggest a feature or report a bug:
  http://github.com/jashkenas/coffee-script/issues/

  The source repository:
  git://github.com/jashkenas/coffee-script.git
  
  To build CoffeeScript from source, install the "racc" gem and
  run "rake build:parser". Then bin/coffee will work.