1
0
Fork 0
mirror of https://github.com/jashkenas/coffeescript.git synced 2022-11-09 12:23:24 -05:00
Unfancy JavaScript
Find a file
2010-01-26 21:15:56 -05:00
bin changed bin/coffee-script to bin/coffee 2009-12-26 08:57:13 -08:00
documentation trying out new arrows for function literals -> is a function, => is a bound function 2010-01-26 10:52:05 -05:00
examples removing block literals in favor of implicit calls 2010-01-26 21:05:26 -05:00
extras updated textmate highlighter for new function literal syntax 2010-01-26 10:54:49 -05:00
lib complete implicit functions, I think these are done. 2010-01-26 21:15:56 -05:00
test complete implicit functions, I think these are done. 2010-01-26 21:15:56 -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
coffee-script.gemspec moved CoffeeScript.tmbundle to extras and rewrote the installation instructions in plain text 2010-01-25 22:22:39 -05:00
index.html trying out new arrows for function literals -> is a function, => is a bound function 2010-01-26 10:52:05 -05:00
LICENSE bumping the license to 2010 2010-01-10 17:57:29 -05:00
package.json CoffeeScript 0.2.6 is on the books 2010-01-17 18:12:59 -05:00
Rakefile moved CoffeeScript.tmbundle to extras and rewrote the installation instructions in plain text 2010-01-25 22:22:39 -05:00
README mentioning the racc gem in the readme 2010-01-07 09:43:44 -05:00

=                              
            {                   
         }   }   {              
        {   {  }  }             
         }   }{  {               
        {  }{  }  }                    _____       __  __           
       ( }{ }{  { )                   / ____|     / _|/ _|          
     .- { { }  { }} -.               | |     ___ | |_| |_ ___  ___ 
    (  ( } { } { } }  )              | |    / _ \|  _|  _/ _ \/ _ \ 
    |`-..________ ..-'|              | |___| (_) | | | ||  __/  __/ 
    |                 |               \_____\___/|_| |_| \___|\___|
    |                 ;--.           
    |                (__  \            _____           _       _   
    |                 | )  )          / ____|         (_)     | |  
    |                 |/  /          | (___   ___ _ __ _ _ __ | |_ 
    |                 (  /            \___ \ / __| '__| | '_ \| __|
    |                 |/              ____) | (__| |  | | |_) | |_ 
    |                 |              |_____/ \___|_|  |_| .__/ \__|
     `-.._________..-'                                  | |        
                                                        |_|
                  
                                                        
  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.