https://github.com/andreacrotti/todo-or-die
https://github.com/andreacrotti/todo-or-die
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/andreacrotti/todo-or-die
- Owner: AndreaCrotti
- License: bsd-3-clause
- Created: 2021-10-15T19:21:17.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-10-15T20:18:01.000Z (about 4 years ago)
- Last Synced: 2025-02-01T08:30:54.708Z (11 months ago)
- Language: Clojure
- Size: 2.93 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Todo or die
Inspired by other projects like [Rust todo or die](https://docs.rs/todo-or-die/0.1.2/todo_or_die/).
```clojure
(require '[todo-or-die.core :as todo])
(require '[cljc.java-time.local-date :as ld])
(todo/todo-or-die
(todo/after? (ld/of 2022 01 01))
(defn deprecated-function []
(println "I Should exist anymore in 2022")))
```