Last active
November 26, 2015 14:09
-
-
Save thheller/3491a77031a798490e70 to your computer and use it in GitHub Desktop.
This file contains 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
(def x (fn ([a b c] (+ a b c)) ([a b c d] (+ a b c d)))) | |
(def y (fn [] (x 1 2 3))) | |
(def x (fn ([a b c d] (+ a b c d)) ([a c c d e] (+ a b c d e)))) | |
(y) |
This file contains 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
(def x (fn [a b c] (+ a b c))) | |
(def y (fn [] (x 1 2 3))) | |
(def x (fn [a b] (+ a b))) | |
(y) |
This file contains 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
cljs.user.x = (function() { | |
var cljs$user$x = null; | |
var cljs$user$x__3 = (function (a,b,c){ | |
return ((a + b) + c); | |
}); | |
var cljs$user$x__4 = (function (a,b,c,d){ | |
return (((a + b) + c) + d); | |
}); | |
cljs$user$x = function(a,b,c,d){ | |
switch(arguments.length){ | |
case 3: | |
return cljs$user$x__3.call(this,a,b,c); | |
case 4: | |
return cljs$user$x__4.call(this,a,b,c,d); | |
} | |
throw(new Error('Invalid arity: ' + arguments.length)); | |
}; | |
cljs$user$x.cljs$core$IFn$_invoke$arity$3 = cljs$user$x__3; | |
cljs$user$x.cljs$core$IFn$_invoke$arity$4 = cljs$user$x__4; | |
return cljs$user$x; | |
})() | |
cljs.user.y = (function cljs$user$y(){ | |
return cljs.user.x.cljs$core$IFn$_invoke$arity$3((1),(2),(3)); | |
}) | |
cljs.user.x = (function() { | |
var cljs$user$x = null; | |
var cljs$user$x__4 = (function (a,b,c,d){ | |
return (((a + b) + c) + d); | |
}); | |
var cljs$user$x__5 = (function (a,c,c__$1,d,e){ | |
return ((((a + cljs.user.b) + c__$1) + d) + e); | |
}); | |
cljs$user$x = function(a,c,c__$1,d,e){ | |
switch(arguments.length){ | |
case 4: | |
return cljs$user$x__4.call(this,a,c,c__$1,d); | |
case 5: | |
return cljs$user$x__5.call(this,a,c,c__$1,d,e); | |
} | |
throw(new Error('Invalid arity: ' + arguments.length)); | |
}; | |
cljs$user$x.cljs$core$IFn$_invoke$arity$4 = cljs$user$x__4; | |
cljs$user$x.cljs$core$IFn$_invoke$arity$5 = cljs$user$x__5; | |
return cljs$user$x; | |
})() | |
cljs.user.y() |
This file contains 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
cljs.user.x = (function() { | |
var cljs$user$x = null; | |
var cljs$user$x__3 = (function (a,b,c){ | |
return ((a + b) + c); | |
}); | |
var cljs$user$x__4 = (function (a,b,c,d){ | |
return (((a + b) + c) + d); | |
}); | |
cljs$user$x = function(a,b,c,d){ | |
switch(arguments.length){ | |
case 3: | |
return cljs$user$x__3.call(this,a,b,c); | |
case 4: | |
return cljs$user$x__4.call(this,a,b,c,d); | |
} | |
throw(new Error('Invalid arity: ' + arguments.length)); | |
}; | |
cljs$user$x.cljs$core$IFn$_invoke$arity$3 = cljs$user$x__3; | |
cljs$user$x.cljs$core$IFn$_invoke$arity$4 = cljs$user$x__4; | |
return cljs$user$x; | |
})() | |
cljs.user.y = (function cljs$user$y(){ | |
return cljs.user.x.call(null,(1),(2),(3)); | |
}) | |
cljs.user.x = (function() { | |
var cljs$user$x = null; | |
var cljs$user$x__4 = (function (a,b,c,d){ | |
return (((a + b) + c) + d); | |
}); | |
var cljs$user$x__5 = (function (a,c,c__$1,d,e){ | |
return ((((a + cljs.user.b) + c__$1) + d) + e); | |
}); | |
cljs$user$x = function(a,c,c__$1,d,e){ | |
switch(arguments.length){ | |
case 4: | |
return cljs$user$x__4.call(this,a,c,c__$1,d); | |
case 5: | |
return cljs$user$x__5.call(this,a,c,c__$1,d,e); | |
} | |
throw(new Error('Invalid arity: ' + arguments.length)); | |
}; | |
cljs$user$x.cljs$core$IFn$_invoke$arity$4 = cljs$user$x__4; | |
cljs$user$x.cljs$core$IFn$_invoke$arity$5 = cljs$user$x__5; | |
return cljs$user$x; | |
})() | |
cljs.user.y.call(null) |
This file contains 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
cljs.user.x = (function cljs$user$x(a,b,c){ | |
return ((a + b) + c); | |
}) | |
cljs.user.y = (function cljs$user$y(){ | |
return cljs.user.x((1),(2),(3)); | |
}) | |
cljs.user.x = (function cljs$user$x(a,b){ | |
return (a + b); | |
}) | |
cljs.user.y() |
This file contains 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
cljs.user.x = (function cljs$user$x(a,b,c){ | |
return ((a + b) + c); | |
}) | |
cljs.user.y = (function cljs$user$y(){ | |
return cljs.user.x.call(null,(1),(2),(3)); | |
}) | |
cljs.user.x = (function cljs$user$x(a,b){ | |
return (a + b); | |
}) | |
cljs.user.y.call(null) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment