In Ruby you can reference variables inside strings and they are interpolated at runtime.
For example if you declare a variable `foo' equals "Ted" and you declare a string "Hello, #{foo}" it interpolates to "Hello, Ted".
I've not been able to figure out how to perform the magic "#{}" interpolation on data read from a file.
In pseudo code it might look something like this:
interpolated_string = File.new('myfile.txt').read.interpolate
But that last `interpolate' method doesn't exist.