summaryrefslogtreecommitdiff
path: root/jstests/eval0.js
blob: 1b9bd35d22ed1b7f52b8815722d5b724b80123c2 (plain)
1
2
3

assert.eq( 17 , db.eval( function(){ return 11 + 6; } ) , "A" );
assert.eq( 17 , db.eval( function( x ){ return 10 + x; } , 7 ) , "B" );