Unfancy JavaScript
Go to file
Jeremy Ashkenas 001c915c21 Self-compiler: object literals. 2010-02-09 20:53:25 -05:00
bin changed bin/coffee-script to bin/coffee 2009-12-26 08:57:13 -08:00
documentation removing the constructor safety check -- it wasn't safe enough (Issue 36) 2010-02-09 07:59:48 -05:00
examples merging node into master -- you can now pass the --narwhal flag to use narwhal instead. All tests are executing successfully against both Node.js and Narwhal/Rhino backends 2010-02-07 12:52:07 -05:00
extras adding @property for this.property 2010-02-02 20:36:46 -05:00
lib Self-compiler: object literals. 2010-02-09 20:53:25 -05:00
src Self-compiler: object literals. 2010-02-09 20:53:25 -05:00
test removing the constructor safety check -- it wasn't safe enough (Issue 36) 2010-02-09 07:59:48 -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 merging node into master -- you can now pass the --narwhal flag to use narwhal instead. All tests are executing successfully against both Node.js and Narwhal/Rhino backends 2010-02-07 12:52:07 -05:00
coffee-script.gemspec CoffeeScript 0.3.2, just in time for the Github feature 2010-02-08 10:58:49 -05:00
index.html CoffeeScript 0.3.2, just in time for the Github feature 2010-02-08 10:58:49 -05:00
package.json CoffeeScript 0.3.2, just in time for the Github feature 2010-02-08 10:58:49 -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.