the equal sign
############
x = 8
puts x
# outputs 8
############
Back
Rearrange the code to output "My first program" to the screen.
# prints "My"
# prints "progam"
# puts "first"
Front
##############
# prints "My"
# puts "first"
# prints "program"
###############
Back
the =begin and =end reserved words are considered
Front
a comment
################
=begin
This comment
spans multiple
lines
=end
puts "Hello"
################
Back
hashtag symbol is used to create
Front
a single-line comment
Back
Ruby on Rails is a:
Front
Web Framework
Back
Fill in the blanks to print "Ruby is fun" to the screen.
____"Ruby is fun"
Front
puts or print
Back
Diffrence between puts and print
Front
puts automatically adds a new line after the output, while print does not
#################
#puts "Hi"
#print "there"
#print "Ruby"
##Hi
##thereRuby
#################
Back
a named storage location for a value
Front
A variable
Back
What is the output of this code?
# puts "1"
puts "2"