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