You cannot 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
311 B
Racket
10 lines
311 B
Racket
#lang at-exp racket/base
|
|
(require scribble/manual)
|
|
(provide (all-defined-out))
|
|
|
|
(define (aoc-title which)
|
|
(define which-str (number->string which))
|
|
@title[#:style manual-doc-style]{@link[@string-append["http://adventofcode.com/day/" @which-str]]{Day @which-str}})
|
|
|
|
(define (input)
|
|
@link["input.txt"]{input}) |