example.gsp 105 B

123456789
  1. (ns main
  2. "fmt")
  3. (def main (fn []
  4. (fmt/println (my-func 10))
  5. ))
  6. (def my-func (fn [n]
  7. n))