Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
80538 views
1
console.log('bar line 1');
2
'use strict';
3
4
// this is a meaningless comment to add some lines
5
6
module.exports = function bar() {
7
console.log('hello from bar line 7');
8
};
9
10