Hello world
This is a test.
# this is a codeblock test
./some-code
<test param="test" />
function Person() {
// we assign `this` to `self` so we can use it later
var self = this;
self.age = 0;
setInterval(function growUp() {
// `self` refers to the expected object
self.age++;
}, 1000);
}