From: James Edward Gray II Date: 2005-12-18T06:06:41+09:00 Subject: Re: New to coding, lost as hell On Dec 17, 2005, at 2:53 PM, Steve Litt wrote: > One thing -- If you're using Windows, you'll need to delete the > line saying: > > #!/usr/bin/ruby No need for that. Ruby on Windows is not bothered by a Shebang line. Not only that, but it *will* parse them for options. #!/usr/local/bin/ruby -w That will turn on warnings, even on Windows. James Edward Gray II