| 1 | /* |
| 2 | this is a very long comment |
| 3 | that is on multiple lines |
| 4 | and has some formatting in it |
| 5 | that should be |
| 6 | preserved. |
| 7 | */ |
| 8 | fn main() { |
| 9 | println('hello') |
| 10 | /* |
| 11 | this comment also |
| 12 | has multiple lines |
| 13 | but it's difference |
| 14 | is that it is indented ! |
| 15 | */ |
| 16 | if true { |
| 17 | /* |
| 18 | this one is even more |
| 19 | indented ! |
| 20 | */ |
| 21 | } |
| 22 | } |
| 23 |