Skip to content

Commit

Permalink
Solve Brazil World Cup in clojure
Browse files Browse the repository at this point in the history
  • Loading branch information
deniscostadsc committed Nov 20, 2024
1 parent 228a20f commit c378d90
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions solutions/beecrowd/1564/1564.clj
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
(ns main)

(defn main []
(loop [line (read-line)]
(when line
(if (= line "0")
(println "vai ter copa!")
(println "vai ter duas!"))
(recur (read-line)))))

(main)

0 comments on commit c378d90

Please sign in to comment.