Skip to content

AoC23 - Lessons Learned on Day 1

Published: at 06:00 PM

This year, I am doing three “languages” for AoC. I am doing JS, Python, and Bash. I selected JS as I have students who will want help, so I want to make sure I can guide them. Python is my own personal choice. Bash is something my husband wanted to do so I can learn it as he just knocks em out the ball park.

Here are a few things I have learned from each language that I want to remember

Table of contents

Open Table of contents

JavaScript

Python

Bash

for value in "${list[@]}"; do
  # do some stuff
done