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

Strings0() public method

public Strings0 ( ) : void
return void
        public void Strings0() {
            AssertOutput(delegate() {
                CompilerTest(@"
puts ""foo""
puts ""foo"" 'bar' ""baz""
");
            }, @"
foo
foobarbaz
");
        }
Tests