Rails Example:

simple hello-goodbye site: site linking, simple form in rails
controller and views can be created by typing:

	"rails generate controller say hello goodbye action"
		or short form
	"rails g controller say hello goodbye action" 

in cmd line

Rails build-in server (Webrick) is started by typing:
	"rails server"
		or shortform 
	"rails s"