mirror of
https://github.com/marko-js/marko.git
synced 2026-01-25 15:03:04 +00:00
8 lines
159 B
JavaScript
8 lines
159 B
JavaScript
function create(helpers) {
|
|
var empty = helpers.e,
|
|
notEmpty = helpers.ne;
|
|
|
|
return function render(data, context) {
|
|
context.w('Hello John');
|
|
};
|
|
} |