1
0
Fork 0
advent-of-code-2024/template.rb

12 lines
154 B
Ruby
Raw Normal View History

2024-12-02 19:11:11 -05:00
#!/usr/bin/env ruby
2024-12-10 12:49:42 -05:00
problem = :fake
#input = File.readlines("#{problem}.input", chomp: true)
2024-12-10 08:27:28 -05:00
input = DATA.read
2024-12-02 19:11:11 -05:00
result = :solution
puts result
2024-12-10 08:27:28 -05:00
__END__