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

ProcCallCaching1() public method

public ProcCallCaching1 ( ) : void
return void
        public void ProcCallCaching1() {
            AssertOutput(delegate() {
                CompilerTest(@"
$p = lambda { puts 1 }
$q = lambda { puts 2 } 

$p.call
$q.call
");
            }, @"
1
2
");
        }
Tests