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
function mouse(_, me, when, claim){ | |
when('fox is out', () => { | |
claim(me, 'wish', 'labelled', 'squeak') | |
claim(me, 'wish', 'outlined', 'red') | |
}) | |
} | |
function fox(_, me, when, claim){ | |
claim('fox is out') | |
} |
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
-- Shirt (#softfab) | |
Claim (you) has state "waist" with initial value (30). | |
Claim (you) has state "arm" with initial value (5). | |
Claim (you) has state "armaround" with initial value (10). | |
Claim (you) has state "side" with initial value (20). | |
Claim (you) has state "neck" with initial value (15). | |
When (you) contains dots /dots/, | |
(you) has width /width/: |
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
(comment | |
;; Bug report for CLJS-721 (support :include-macros true modifier in :require), | |
;; Ref. http://dev.clojure.org/jira/browse/CLJS-721, | |
;; http://goo.gl/MQ3fWd (GitHub commit de6ee41b3) | |
;; desugar-ns-specs from clojurescript/src/clj/cljs/analyzer.clj | |
;; (`cljs.analyzer` ns) | |
(desugar-ns-specs '[(:require [foo.bar :as bar :include-macros true])]) | |
;; => |