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

11 lines
108 B
Ruby
Raw Normal View History

2024-12-02 19:11:11 -05:00
#!/usr/bin/env ruby
2024-12-11 21:26:56 -05:00
input = (ARGV.first.nil? ? DATA : ARGF)
.read
2024-12-02 19:11:11 -05:00
result = :solution
2024-12-11 21:26:56 -05:00
p result
2024-12-10 08:27:28 -05:00
__END__