#!/bin/env ruby # Sum all numbers in the text file. # Part 1 sum = File.readlines('./input').map { |line| line.to_i)}.sum