Quick question

hey

how do i access i global variable in ruby?

thanks

···

--
Posted via http://www.ruby-forum.com/.

Johnathan Smith wrote:

hey

how do i access i global variable in ruby?

thanks

Trick question! There are no globals in ruby! What do I win?

ilan

···

--
Posted via http://www.ruby-forum.com/\.

Ilan Berci wrote:

Johnathan Smith wrote:
  

hey

how do i access i global variable in ruby?

thanks
    
Trick question! There are no globals in ruby! What do I win?

ilan
  
Sorry...

Global variables begin with $

irb(main):001:0> def a_method
irb(main):002:1> puts $global_var
irb(main):003:1> end
=> nil
irb(main):004:0> a_method
nil
=> nil
irb(main):005:0> $global_var = "Hi, there. I'm a global"
=> "Hi, there. I'm a global"
irb(main):006:0> a_method
Hi, there. I'm a global
=> nil

-Justin

cheers guys

···

--
Posted via http://www.ruby-forum.com/.

Justin Collins wrote:

Ilan Berci wrote:

ilan
  
Sorry...

Global variables begin with $

irb(main):001:0> def a_method
irb(main):002:1> puts $global_var
irb(main):003:1> end
=> nil
irb(main):004:0> a_method
nil
=> nil
irb(main):005:0> $global_var = "Hi, there. I'm a global"
=> "Hi, there. I'm a global"
irb(main):006:0> a_method
Hi, there. I'm a global
=> nil

-Justin

Sorry.. I had a brain fart.. was thinking of methods.. should have read
more carefully..

irb(main):001:0> $global_var = "global!"
=> "global!"
irb(main):002:0> global_variables.grep /global_var/
=> ["$global_var"]
irb(main):003:0>

···

--
Posted via http://www.ruby-forum.com/\.