1
0
Fork 0

Bump template again

This commit is contained in:
Andrew Tomaka 2024-12-11 21:26:56 -05:00
parent 7042623609
commit b5541fd73e
Signed by: atomaka
GPG key ID: 61209BF70A5B18BE

View file

@ -1,11 +1,10 @@
#!/usr/bin/env ruby
problem = :fake
#input = File.readlines("input", chomp: true)
input = DATA.read
input = (ARGV.first.nil? ? DATA : ARGF)
.read
result = :solution
puts result
p result
__END__