01e5a4e45f
git-subtree-dir: lrthw-remnants git-subtree-mainline:f2380eef05
git-subtree-split:2b0a814a17
16 lines
264 B
Ruby
16 lines
264 B
Ruby
filename = ARGV.first
|
|
|
|
prompt = "> "
|
|
txt = File.open(filename)
|
|
|
|
puts "Here's your file: #{filename}"
|
|
puts txt.read()
|
|
|
|
puts "I'll also ask you to type it again:"
|
|
print prompt
|
|
file_again = STDIN.gets.chomp()
|
|
|
|
txt_again = File.open(file_again)
|
|
|
|
puts txt_again.read()
|