source: Dev/trunk/node_modules/grunt-contrib-coffee/test/expected/bare/concat.js

Last change on this file was 484, checked in by hendrikvanantwerpen, 11 years ago

Commit node_modules, to make checkouts and builds more deterministic.

File size: 220 bytes
Line 
1var HelloWorld;
2
3HelloWorld = (function() {
4  function HelloWorld() {}
5
6  HelloWorld.test = 'test';
7
8  return HelloWorld;
9
10})();
11
12console.log('hi');
13
14var sayHello;
15
16sayHello = function() {
17  return console.log('hi');
18};
Note: See TracBrowser for help on using the repository browser.