pcineverdies / AOC-2023

Advent Of Code 2023

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Advent of Code 2023 in Perl

Usage

To run a (valid) day n use

perl run.pl n

Fish trick

As I use fish I set the following variable, alias and function

set -U AOC_FOLDER ~/Path/To/AOC/
alias --save advent_of_code "cd $AOC_FOLDER; perl run.pl"

function advent_of_code_init
  cd $AOC_FOLDER; touch inputs/day_$argv.in
  cp template.pl src/day_$argv.pl
  code $AOC_FOLDER
  code inputs/day_$argv.in
  code src/day_$argv.pl
end

About

Advent Of Code 2023


Languages

Language:Perl 100.0%