firstmodulegci
v1.0.2
Published
First hello world program by julika
Downloads
3
Readme
firstmodulegci
Installation
npm install firstmodulegci --save
Usage
JavaScript
var firstmodule = require('firstmodulegci');
var output = firstmodule.printMsg();
console.log(output);
Output should be 'Hello World - GCI 2017'
AMD
exports.printMsg= function()
{
console.log("Hello World - GCI 2017");
};
Test
npm run test