Mega Code Archive

 
Categories / Ruby / Language Basics
 

Define global variables by putting a dollar sign ($) in front of the variable name

def basic_method   puts $x end $x = 10 basic_method