Answers for "variables in ruby"

1

how to make a new variable ruby

variable_name = 10
variable_name = "ten"
Posted by: Guest on June-11-2020
1

variables in ruby

var_name = "value"
Posted by: Guest on October-04-2020
0

What does @variable stand for in Ruby

@variable - is an "instance" variable. 
It can be accessed with any method inside the class.
Posted by: Guest on February-07-2020

Browse Popular Code Answers by Language