This is my craft solutions for AdventofCode in InterSystems ObjectScript.
I used a ready-made template in Github that allows me to develop ObjectScript solutions for AdventOfCode puzzles using Docker.
This needs to have git and docker installed.
Use the Github template (green button) and create your own repo
Clone/git pull the repo into any local directory
$ git clone https://github.com/your-repository.git
Open the terminal in this directory and run:
$ docker-compose build
- Run the IRIS container with your project:
$ docker-compose up -d
Template goes with the first puzzle solved and a ready to use class Base to load data from files named input1.txt, input2.txt, ... placed in the root of repo.
Open IRIS terminal:
$ docker-compose exec iris iris session iris
USER>zn "IRISAPP"
IRISAPP> ##class(kuznetsov.Advent2019.Day1).Run()
Create Day2.cls derived from base put input2.txt into the root and start solving tasks.
You can code ObjectScript with VSCode if you want - this repo goes ready to code with IRIS in docker.
Install VSCode and ObjectScript plugin and open the folder in VSCode. Open /src/cls/eshvarov/advent2019/Day1.cls class and try to make changes - it will be compiled in running IRIS docker container.
Settings file to let you immedietly code in VSCode with VSCode ObjectScript plugin)
Config file if you want to debug with VSCode ObjectScript