require "./intcode.cr" lines = File.read("day5.txt").chomp.split(",").map(&.to_i32) puts run(lines.clone, [1]) puts run(lines.clone, [5])