Unfancy JavaScript
Go to file
Jeremy Ashkenas 854c796fd6 first little bit of the lexer 2010-01-30 00:08:15 -05:00
bin changed bin/coffee-script to bin/coffee 2009-12-26 08:57:13 -08:00
documentation node conversion finished, narwhal removed. 2010-01-29 23:30:54 -05:00
examples node conversion finished, narwhal removed. 2010-01-29 23:30:54 -05:00
extras updated textmate highlighter for new function literal syntax 2010-01-26 10:54:49 -05:00
lib first little bit of the lexer 2010-01-30 00:08:15 -05:00
src first little bit of the lexer 2010-01-30 00:08:15 -05:00
test node conversion finished, narwhal removed. 2010-01-29 23:30:54 -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 node conversion finished, narwhal removed. 2010-01-29 23:30:54 -05:00
coffee-script.gemspec CoffeeScript 0.3.1, quick patch for 'instanceof' 2010-01-27 08:01:18 -05:00
index.html node conversion finished, narwhal removed. 2010-01-29 23:30:54 -05:00
package.json node conversion finished, narwhal removed. 2010-01-29 23:30:54 -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.