What’s Ruby and what are some of its features?
Much of this course will not focus on many of Ruby’s capabilities and applications (i.e. string manipulation and the Ruby on Rails server-side framework).
A Ruby file file_name.rb
can be run in Terminal/Command Prompt through the command ruby file_name.rb
.
The Ruby REPL can also be launched through the command irb
.
file_name.rb
, you must enter load "file_name.rb"
.quit
.