Subject: Re: Is there a simpler way to do this?
From: Zach Dennis <zdennis mktec.com>
Date: Thu, 18 Aug 2005 00:37:12 +0900
References: 152599152601
In-reply-to: 152601
James Edward Gray II wrote:
> file_contents = File.read("/usr/blah/1.txt")
or, for two more characters shortened...
file_contents = IO.read("/usr/blah/1.txt")
Zach