hexlet-codebattle/codebattle

View on GitHub
services/app/apps/runner/dockers/clojure/check/solution.clj

Summary

Maintainability
Test Coverage
(defn solution [a b _ _ _ _ _ _]
  (try
    (do
      (println "output-test")
      (/ a b))
    (catch Exception ex
      (println (str "dont't do it " (.getMessage ex)))
      (throw (Exception. "AAAAAAAAA")))))