Unfancy JavaScript
Go to file
Jeremy Ashkenas 2319affa61 allowing chained calls broken up over multiple lines with periods at the front (jQuery-style) 2010-01-09 12:12:38 -05:00
bin changed bin/coffee-script to bin/coffee 2009-12-26 08:57:13 -08:00
documentation weepy's new speedy comprehensions 2010-01-07 20:27:26 -05:00
examples adding body-less while expressions 2010-01-09 11:51:32 -05:00
lib allowing chained calls broken up over multiple lines with periods at the front (jQuery-style) 2010-01-09 12:12:38 -05:00
test allowing chained calls broken up over multiple lines with periods at the front (jQuery-style) 2010-01-09 12:12:38 -05:00
.gitignore ignoring the generated parser.rb 2010-01-06 22:38:03 -05:00
LICENSE completely reorganized for a gem and the 'coffee-script' command 2009-12-16 22:42:53 -05:00
README mentioning the racc gem in the readme 2010-01-07 09:43:44 -05:00
Rakefile adding the complete underscore.coffee example to the docs 2010-01-04 22:51:02 -05:00
coffee-script.gemspec CoffeeScript 0.2.1 2010-01-05 09:30:48 -05:00
index.html adding automatic 'return this' for constructors: functions that start with a Capital Letter 2010-01-06 23:47:36 -05:00
package.json CoffeeScript 0.2.1 2010-01-05 09:30:48 -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.