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