摘要:
#!/bin/bash# This is the script that we install somewhere in your $PATH (as "meteor")# when you run# $ curl https://install.meteor.com/ | sh# In fact, all that the curl script does is install this script and run it# once. It's the only file that we install globally on your system; each 阅读全文
摘要:
捣鼓了一天,今天就学习了一下project.clj的工程配置文件。最终要的就是理解各个配置的内容,自己记录一下心得。 1 (defproject cljsbuild-example-simple "0.3.0" 2 :description "A simple example of how to use lein-cljsbuild" 3 :source-paths ["src-clj"] 4 :dependencies [[org.clojure/clojure "1.4.0"];语言 5 [compojure 阅读全文