#!/usr/bin/env rubyclass Hello def initialize( hello ) @hello = hello end def hello @hello endendsalute = Hello.new( "Hello, myValue!" )puts salute.hello