How to loop through ALL pages?

I was able to learn how to do it.

Here’s a solution:

$pages = get_pages();
foreach($pages as $page) {
    echo($page->post_content);
}