A test of codemirror.net
//test functions function foo() { for(var i=0; i<100; i++) { console.log("print i = " + i); } } function bar() { foo(); } function baz() { foo(); bar(); }
asdf