new text
authorChris Barker <barker@kappa.linguistics.fas.nyu.edu>
Sat, 25 Sep 2010 17:04:25 +0000 (13:04 -0400)
committerChris Barker <barker@kappa.linguistics.fas.nyu.edu>
Sat, 25 Sep 2010 17:04:25 +0000 (13:04 -0400)
assignment3.mdwn

index d00dba0..71960dc 100644 (file)
@@ -8,7 +8,7 @@ assignment much faster and more secure.
 
 Recall that version 1 style lists are constructed like this:
 
-<textarea id="INPUT" style="border: 2px solid black; color: black; font-family: monospace; height: 3in; overflow: auto; padding: 0.5em; width: 100%;">
+<pre>
 let true = \x y. x in
 let false = \x y. y in
 let makePair = \f s g. g f s in
@@ -25,71 +25,8 @@ let Y = \f. (\h. f (h h)) (\h. f (h h)) in
 let length = Y (\length l. isNil l 0 (succ (length (tail l)))) in
 
 length mylist
-</textarea>
-<input id="PARSE" value="Normalize" type="button">
-<input id="ETA" type="checkbox">do eta-reductions too
-<noscript><p>You may not see it because you have JavaScript turned off. Uffff!</p></noscript>
-<script src="/code/lambda.js"></script>
-<script src="/code/tokens.js"></script>
-<script src="/code/parse.js"></script>
-<script src="/code/json2.js"></script>
-<pre id="OUTPUT">
 </pre>
-<script>
-/*jslint evil: true */
 
-/*members create, error, message, name, prototype, stringify, toSource,
-    toString, write
-*/
+Then `length mylist` evaluates to 3.
 
-/*global JSON, make_parse, parse, source, tree */
-
-// Make a new object that inherits members from an existing object.
-
-if (typeof Object.create !== 'function') {
-    Object.create = function (o) {
-        function F() {}
-        F.prototype = o;
-        return new F();
-    };
-}
-
-// Transform a token object into an exception object and throw it.
-
-Object.prototype.error = function (message, t) {
-    t = t || this;
-    t.name = "SyntaxError";
-    t.message = message;
-    throw t;
-};
-
-
-(function () {
-    var parse = make_parse();
-
-    function go(source) {
-        var string, tree, expr, eta;
-        try {
-            tree = parse(source);
- //           string = JSON.stringify(tree, ['key', 'name', 'message', 'value', 'arity', 'first', 'second', 'third', 'fourth'], 4);
-                       expr = tree.handler();
-            // string = JSON.stringify(expr, ['key', 'name', 'message', 'value', 'arity', 'first', 'second', 'tag', 'variable', 'left', 'right', 'bound', 'body' ], 4);
-//                     string = expr.to_string() + "\n\n~~>\n\n";
-                       string = '';
-                       eta = document.getElementById('ETA').checked;
-                       string = string + reduce(expr, eta, false).to_string();
-        } catch (e) {
-            string = JSON.stringify(e, ['name', 'message', 'from', 'to', 'key',
-                    'value', 'arity', 'first', 'second', 'third', 'fourth'], 4);
-        }
-        document.getElementById('OUTPUT').innerHTML = string
-            .replace(/&/g, '&amp;')
-            .replace(/[<]/g, '&lt;');
-    }
-
-    document.getElementById('PARSE').onclick = function (e) {
-        go(document.getElementById('INPUT').value);
-    };
-}());
-
-</script>
+What does `head (tail (tail mylist))` evaluate to?