You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
253 B

1 year ago
  1. import p from require "moon"
  2. aoc = (day, problem, fun) ->
  3. with io.open "input/#{day}.txt"
  4. data = \read "*a"
  5. print "============ #{day}.#{problem} ================"
  6. out = fun data
  7. print out
  8. \close!
  9. {:aoc, :p}