IronRuby.Tests.Tests.Constants1A C# (CSharp) Method

Constants1A() public method

public Constants1A ( ) : void
return void
        public void Constants1A() {
            TestOutput(@"
class Const
  def get_const
    CONST
  end
  
  CONST = 1
end

puts Const.new.get_const
", @"
1
");
        }
Tests