--- layout: default title: Break permalink: /terminal-objects/br/ --- Break ============== The `br` method does exactly that, inserts a line break: ~~~php $climate->br(); ~~~ For ease of use, the `br` method is also chainable: ~~~php $climate->br()->out('I have moved down a line.'); ~~~