- Joined
- Jul 19, 2015
- Messages
- 3
- Reaction score
- 1
- First Language
- English
- Primarily Uses
I searched for => on 2 different sites but cannot find what it does.
http://www.tutorialspoint.com/ruby/ruby_operators.htm
http://www.rpg-maker.fr/dl/monos/aide/vx/source/rgss/syntax04.html
It looks like a symbol used to indicate output resulting from code; for example:
foo = 42defined? foo # => "local-variable"=> is mostly used in the Luna engine and only rarely in the vanilla scripts. For example:
# ----------------------------------------------------------------- # This allows you to set a variable to change the skin of this particular # section of the menu. The default is Variable 1. Remember that it reads # it as a string (e.g. $game_variables[1] = “Menu_Green”). # ----------------------------------------------------------------- :background_variable => 1,Does this mean it changes itself to Variable 1?
http://www.tutorialspoint.com/ruby/ruby_operators.htm
http://www.rpg-maker.fr/dl/monos/aide/vx/source/rgss/syntax04.html
It looks like a symbol used to indicate output resulting from code; for example:
foo = 42defined? foo # => "local-variable"=> is mostly used in the Luna engine and only rarely in the vanilla scripts. For example:
# ----------------------------------------------------------------- # This allows you to set a variable to change the skin of this particular # section of the menu. The default is Variable 1. Remember that it reads # it as a string (e.g. $game_variables[1] = “Menu_Green”). # ----------------------------------------------------------------- :background_variable => 1,Does this mean it changes itself to Variable 1?


