This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var cons = function(a, b) { | |
| return function(f) { | |
| return f(a,b); | |
| } | |
| } | |
| var car = function(f) { | |
| return f(function(a, b) { return a; }) | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| python ../closure-library/closure/bin/calcdeps.py --path ../closure-library --path ../closure-templates/javascript/soyutils_usegoog.js --path hello.soy.js --input hello.js --compiler_jar ../closure-compiler/build/compiler.jar --output_mode compiled --compiler_flags="--compilation_level=ADVANCED_OPTIMIZATIONS" > hello-compiled.js | |
| python ../closure-library/closure/bin/calcdeps.py --dep ../closure-library --path ../closure-templates/javascript --path hello.soy.js --path hello.js --output_mode deps > hello-deps.js |