public
Description: my random codes
Homepage: http://anilwadghule.com/blog
Clone URL: git://github.com/anildigital/anil-code.git
anil-code / run_class_test.rb
100644 13 lines (11 sloc) 0.203 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
# code to test __FILE__ use
class Foo
  def hello
    puts "Hello World"
  end
end
 
# This code gets called whenever we run run_class_test.rb
if __FILE__ == $PROGRAM_NAME
  foo = Foo.new
  foo.hello
end