mirror of https://github.com/lukechilds/rollup.git
6 changed files with 19 additions and 13 deletions
@ -1,9 +1,10 @@ |
|||||
/* first banner */ |
/* first banner */ |
||||
/* second banner */ |
/* second banner */ |
||||
(function () { 'use strict'; |
(function () { |
||||
|
'use strict'; |
||||
|
|
||||
console.log( 1 + 1 ); |
console.log( 1 + 1 ); |
||||
|
|
||||
})(); |
}()); |
||||
/* first footer */ |
/* first footer */ |
||||
/* second footer */ |
/* second footer */ |
||||
|
@ -1,7 +1,8 @@ |
|||||
/* this is a banner */ |
/* this is a banner */ |
||||
(function () { 'use strict'; |
(function () { |
||||
|
'use strict'; |
||||
|
|
||||
console.log( 'hello world' ); |
console.log( 'hello world' ); |
||||
|
|
||||
})(); |
}()); |
||||
/* this is a footer */ |
/* this is a footer */ |
||||
|
Loading…
Reference in new issue