fix aoc day macro

This commit is contained in:
2021-06-21 12:00:55 -06:00
parent 3fdbf58750
commit 43bc843ae9

View File

@@ -1,6 +1,6 @@
(defmacro day [num &rest body] (defmacro day [num &rest body]
`(when (<= 0 (days.indexOf ,num)) `(when (<= 0 (days.indexOf ,num))
(print (+ "day " ,num)) (print (+ "day " (Std.string ,num)))
,@body)) ,@body))
(defmacro dayTodo [num] (defmacro dayTodo [num]