From: Anthony Ob Date: 2011-02-26T13:53:30+09:00 Subject: Re: How to call a class from another script? Well I got this script: puts "Do you feel, good, bad, or neutral?" feelings = gets.chomp STDOUT.flush puts "You are feeling " + feelings and I want to add the name class from this script: puts "Hello, what is your name?" name = gets.chomp STDOUT.flush puts "Hello, " + name How would I do that? -- Posted via http://www.ruby-forum.com/.