blob: 79f50a656b9da03a51def534f483999102b8ea70 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import { readInput, writeOutput } from './common';
const greet = function (input) {
writeOutput({ header: input.header, data: { greeting: 'Hello ' + input.data.name + '!' } });
};
console.log('Greet module loaded');
readInput(greet);
|