Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Adam Lee

Adam Lee

Adam Lee has asked 0 questions and find answers to 7 problems.

Stats

299
EtPoint
118
Vote count
0
questions
7
answers

About

(loop [project-code best-idea-since-sliced-bread
       project-age  0]
  (if (works? project-code)
      (shell/sh "git" "commit" "-am"
                (if (young? project-age)
                    "I'm a genius!"
                    "What the 🤬?  At least this new bug is better than the one it replaced 🤔")))
  (recur (bash-head project-code)
         (inc project-age)))