Skip to content

Instantly share code, notes, and snippets.

@bobbyno
Created April 11, 2014 17:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bobbyno/10487152 to your computer and use it in GitHub Desktop.
Save bobbyno/10487152 to your computer and use it in GitHub Desktop.
git clone git@github.com: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