Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 480 Bytes

README.md

File metadata and controls

27 lines (17 loc) · 480 Bytes

advent-of-code

Solutions to various advent of code puzzles for various years.

https://adventofcode.com

2017

Compile using GNU Fortran

gfortran main.f90 -o main.out

Run

./main.out

2018

Compile using GNU Cobol

Note: [Number] in day[Number].cob should be replaced with the day you wish to run.

Strict column formating:

cobc -x -o main.out day[Number].cob

Free column formating:

cobc -x -free -o main.out day[Number].cob

Run

./main.out