1
0
Fork 0
advent-of-code-2024/template.rb
2024-12-10 12:50:44 -05:00

11 lines
154 B
Ruby
Executable file

#!/usr/bin/env ruby
problem = :fake
#input = File.readlines("#{problem}.input", chomp: true)
input = DATA.read
result = :solution
puts result
__END__