Code for the Advent of Code event
aoc advent-of-code
at rust 9 lines 169 B view raw
1# frozen_string_literal: true 2 3require_relative 'intcode/cpu' 4 5module AoC 6 # Structures for creating and interacting with Intcode computers. 7 module Intcode 8 end 9end