Created
April 11, 2014 17:42
-
-
Save bobbyno/10487152 to your computer and use it in GitHub Desktop.
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
git clone [email protected]:tailrecursion/boot | |
cd boot | |
make boot | |
mv ./boot /usr/local/bin | |
echo '#!/usr/bin/env boot | |
#tailrecursion.boot.core/version "2.3.1" | |
(defn -main [& args] | |
(println "hello, world") | |
(System/exit 0))' > /tmp/build.boot | |
chmod 755 !$ | |
!$ | |
# let the dependencies resolve; don't time this run | |
time !$ | |
#hello, world | |
#real 0m3.255s | |
#user 0m6.254s | |
#sys 0m0.178s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment