9 lines
224 B
Markdown
9 lines
224 B
Markdown
|
```
|
||
|
import {Component, View, bootstrap} from 'angular2/angular2';
|
||
|
/* more code here */
|
||
|
// indented comment
|
||
|
var x = 3;
|
||
|
// plaster should go immediately under here.
|
||
|
/* more code here */
|
||
|
bootstrap(AppComponent);
|
||
|
```
|