Watch
1
0
Fork
You've already forked advent-of-code
0
advent-of-code/2019/day05/part1.rb

7 lines
137 B
Ruby

# frozen_string_literal: true
require_relative 'intcode'
input = File.join(__dir__, 'input')
program = Intcode.read(input)
program.run