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

10 lines
108 B
Ruby
Executable file

#!/usr/bin/env ruby
input = (ARGV.first.nil? ? DATA : ARGF)
.read
result = :solution
p result
__END__